| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| access_token | String? |
|
No | - |
| expires_at | Int? |
|
No | - |
| id | String |
|
Yes | - |
| id_token | String? |
|
No | - |
| provider | String |
|
Yes | - |
| providerAccountId | String |
|
Yes | - |
| oauth_token | String? |
|
No | - |
| oauth_token_secret | String? |
|
No | - |
| refresh_token | String? |
|
No | - |
| scope | String? |
|
No | - |
| session_state | String? |
|
No | - |
| token_type | String? |
|
No | - |
| type | String |
|
Yes | - |
| user | User |
|
Yes | - |
| userId | String |
|
Yes | - |
Find zero or one Account
// Get one Account
const account = await prisma.account.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereUniqueInput | Yes |
Find first Account
// Get one Account
const account = await prisma.account.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereInput | No |
| orderBy | AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput | No |
| cursor | AccountWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AccountScalarFieldEnum[] | No |
Find zero or more Account
// Get all Account
const Account = await prisma.account.findMany()
// Get first 10 Account
const Account = await prisma.account.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | AccountWhereInput | No |
| orderBy | AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput | No |
| cursor | AccountWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AccountScalarFieldEnum[] | No |
Create one Account
// Create one Account
const Account = await prisma.account.create({
data: {
// ... data to create a Account
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountCreateInput | AccountUncheckedCreateInput | Yes |
Delete one Account
// Delete one Account
const Account = await prisma.account.delete({
where: {
// ... filter to delete one Account
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereUniqueInput | Yes |
Update one Account
// Update one Account
const account = await prisma.account.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountUpdateInput | AccountUncheckedUpdateInput | Yes |
| where | AccountWhereUniqueInput | Yes |
Delete zero or more Account
// Delete a few Account
const { count } = await prisma.account.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereInput | No |
Update zero or one Account
const { count } = await prisma.account.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountUpdateManyMutationInput | AccountUncheckedUpdateManyInput | Yes |
| where | AccountWhereInput | No |
Create or update one Account
// Update or create a Account
const account = await prisma.account.upsert({
create: {
// ... data to create a Account
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Account we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereUniqueInput | Yes |
| create | AccountCreateInput | AccountUncheckedCreateInput | Yes |
| update | AccountUpdateInput | AccountUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| expires | DateTime |
|
Yes | - |
| id | String |
|
Yes | - |
| sessionToken | String |
|
Yes | - |
| user | User |
|
Yes | - |
| userId | String |
|
Yes | - |
Find zero or one Session
// Get one Session
const session = await prisma.session.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereUniqueInput | Yes |
Find first Session
// Get one Session
const session = await prisma.session.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereInput | No |
| orderBy | SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput | No |
| cursor | SessionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SessionScalarFieldEnum[] | No |
Find zero or more Session
// Get all Session
const Session = await prisma.session.findMany()
// Get first 10 Session
const Session = await prisma.session.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SessionWhereInput | No |
| orderBy | SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput | No |
| cursor | SessionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SessionScalarFieldEnum[] | No |
Create one Session
// Create one Session
const Session = await prisma.session.create({
data: {
// ... data to create a Session
}
})
| Name | Type | Required |
|---|---|---|
| data | SessionCreateInput | SessionUncheckedCreateInput | Yes |
Delete one Session
// Delete one Session
const Session = await prisma.session.delete({
where: {
// ... filter to delete one Session
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereUniqueInput | Yes |
Update one Session
// Update one Session
const session = await prisma.session.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SessionUpdateInput | SessionUncheckedUpdateInput | Yes |
| where | SessionWhereUniqueInput | Yes |
Delete zero or more Session
// Delete a few Session
const { count } = await prisma.session.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereInput | No |
Update zero or one Session
const { count } = await prisma.session.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SessionUpdateManyMutationInput | SessionUncheckedUpdateManyInput | Yes |
| where | SessionWhereInput | No |
Create or update one Session
// Update or create a Session
const session = await prisma.session.upsert({
create: {
// ... data to create a Session
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Session we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereUniqueInput | Yes |
| create | SessionCreateInput | SessionUncheckedCreateInput | Yes |
| update | SessionUpdateInput | SessionUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| expires | DateTime |
|
Yes | - |
| identifier | String |
|
Yes | - |
| token | String |
|
Yes | - |
Find zero or one VerificationToken
// Get one VerificationToken
const verificationToken = await prisma.verificationToken.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereUniqueInput | Yes |
Find first VerificationToken
// Get one VerificationToken
const verificationToken = await prisma.verificationToken.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereInput | No |
| orderBy | VerificationTokenOrderByWithRelationInput[] | VerificationTokenOrderByWithRelationInput | No |
| cursor | VerificationTokenWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | VerificationTokenScalarFieldEnum[] | No |
Find zero or more VerificationToken
// Get all VerificationToken
const VerificationToken = await prisma.verificationToken.findMany()
// Get first 10 VerificationToken
const VerificationToken = await prisma.verificationToken.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereInput | No |
| orderBy | VerificationTokenOrderByWithRelationInput[] | VerificationTokenOrderByWithRelationInput | No |
| cursor | VerificationTokenWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | VerificationTokenScalarFieldEnum[] | No |
Create one VerificationToken
// Create one VerificationToken
const VerificationToken = await prisma.verificationToken.create({
data: {
// ... data to create a VerificationToken
}
})
| Name | Type | Required |
|---|---|---|
| data | VerificationTokenCreateInput | VerificationTokenUncheckedCreateInput | Yes |
Delete one VerificationToken
// Delete one VerificationToken
const VerificationToken = await prisma.verificationToken.delete({
where: {
// ... filter to delete one VerificationToken
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereUniqueInput | Yes |
Update one VerificationToken
// Update one VerificationToken
const verificationToken = await prisma.verificationToken.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | VerificationTokenUpdateInput | VerificationTokenUncheckedUpdateInput | Yes |
| where | VerificationTokenWhereUniqueInput | Yes |
Delete zero or more VerificationToken
// Delete a few VerificationToken
const { count } = await prisma.verificationToken.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereInput | No |
Update zero or one VerificationToken
const { count } = await prisma.verificationToken.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | VerificationTokenUpdateManyMutationInput | VerificationTokenUncheckedUpdateManyInput | Yes |
| where | VerificationTokenWhereInput | No |
Create or update one VerificationToken
// Update or create a VerificationToken
const verificationToken = await prisma.verificationToken.upsert({
create: {
// ... data to create a VerificationToken
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the VerificationToken we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereUniqueInput | Yes |
| create | VerificationTokenCreateInput | VerificationTokenUncheckedCreateInput | Yes |
| update | VerificationTokenUpdateInput | VerificationTokenUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| accounts | Account[] |
|
Yes | - |
| activities | UserActivity[] |
|
Yes | - |
| chats | ChatsOnUsers[] |
|
Yes | - |
| chatMessages | ChatMessage[] |
|
Yes | - |
| comments | Comment[] |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| description | String? |
|
No | - |
| desiredSkills | DesiredSkillsOnUsers[] |
|
Yes | - |
| String |
|
Yes | - | |
| emailVerified | DateTime? |
|
No | - |
| experiences | Experience[] |
|
Yes | - |
| followedBy | FollowUser[] |
|
Yes | - |
| followingSkill | FollowSkill[] |
|
Yes | - |
| followingUser | FollowUser[] |
|
Yes | - |
| friendedBy | Friendship[] |
|
Yes | - |
| friending | Friendship[] |
|
Yes | - |
| id | String |
|
Yes | - |
| image | String? |
|
No | - |
| name | String |
|
Yes | - |
| notifications | Notification[] |
|
Yes | - |
| notificationsLastOpenedAt | DateTime |
|
Yes | - |
| posts | Post[] |
|
Yes | - |
| repositories | Repository[] |
|
Yes | - |
| sessions | Session[] |
|
Yes | - |
| skills | SkillsOnUsers[] |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| upvotedComments | CommentUpvoter[] |
|
Yes | - |
| upvotedPosts | PostUpvoter[] |
|
Yes | - |
Find zero or one User
// Get one User
const user = await prisma.user.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Find first User
// Get one User
const user = await prisma.user.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum[] | No |
Find zero or more User
// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum[] | No |
Create one User
// Create one User
const User = await prisma.user.create({
data: {
// ... data to create a User
}
})
| Name | Type | Required |
|---|---|---|
| data | UserCreateInput | UserUncheckedCreateInput | Yes |
Delete one User
// Delete one User
const User = await prisma.user.delete({
where: {
// ... filter to delete one User
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Update one User
// Update one User
const user = await prisma.user.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| where | UserWhereUniqueInput | Yes |
Delete zero or more User
// Delete a few User
const { count } = await prisma.user.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
Update zero or one User
const { count } = await prisma.user.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyInput | Yes |
| where | UserWhereInput | No |
Create or update one User
// Update or create a User
const user = await prisma.user.upsert({
create: {
// ... data to create a User
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the User we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
| create | UserCreateInput | UserUncheckedCreateInput | Yes |
| update | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| comment | Comment? |
|
No | - |
| commentId | String? |
|
No | - |
| createdAt | DateTime |
|
Yes | - |
| follow | Follow? |
|
No | - |
| followId | String? |
|
No | - |
| friendship | Friendship? |
|
No | - |
| friendshipId | String? |
|
No | - |
| post | Post? |
|
No | - |
| postId | String? |
|
No | - |
| type | UserActivityType |
|
Yes | - |
| user | User |
|
Yes | - |
| userId | String |
|
Yes | - |
Find zero or one UserActivity
// Get one UserActivity
const userActivity = await prisma.userActivity.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserActivityWhereUniqueInput | Yes |
Find first UserActivity
// Get one UserActivity
const userActivity = await prisma.userActivity.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserActivityWhereInput | No |
| orderBy | UserActivityOrderByWithRelationInput[] | UserActivityOrderByWithRelationInput | No |
| cursor | UserActivityWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserActivityScalarFieldEnum[] | No |
Find zero or more UserActivity
// Get all UserActivity
const UserActivity = await prisma.userActivity.findMany()
// Get first 10 UserActivity
const UserActivity = await prisma.userActivity.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserActivityWhereInput | No |
| orderBy | UserActivityOrderByWithRelationInput[] | UserActivityOrderByWithRelationInput | No |
| cursor | UserActivityWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserActivityScalarFieldEnum[] | No |
Create one UserActivity
// Create one UserActivity
const UserActivity = await prisma.userActivity.create({
data: {
// ... data to create a UserActivity
}
})
| Name | Type | Required |
|---|---|---|
| data | UserActivityCreateInput | UserActivityUncheckedCreateInput | Yes |
Delete one UserActivity
// Delete one UserActivity
const UserActivity = await prisma.userActivity.delete({
where: {
// ... filter to delete one UserActivity
}
})
| Name | Type | Required |
|---|---|---|
| where | UserActivityWhereUniqueInput | Yes |
Update one UserActivity
// Update one UserActivity
const userActivity = await prisma.userActivity.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserActivityUpdateInput | UserActivityUncheckedUpdateInput | Yes |
| where | UserActivityWhereUniqueInput | Yes |
Delete zero or more UserActivity
// Delete a few UserActivity
const { count } = await prisma.userActivity.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserActivityWhereInput | No |
Update zero or one UserActivity
const { count } = await prisma.userActivity.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserActivityUpdateManyMutationInput | UserActivityUncheckedUpdateManyInput | Yes |
| where | UserActivityWhereInput | No |
Create or update one UserActivity
// Update or create a UserActivity
const userActivity = await prisma.userActivity.upsert({
create: {
// ... data to create a UserActivity
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the UserActivity we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserActivityWhereUniqueInput | Yes |
| create | UserActivityCreateInput | UserActivityUncheckedCreateInput | Yes |
| update | UserActivityUpdateInput | UserActivityUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| chat | Chat? |
|
No | - |
| chatId | String? |
|
No | - |
| friendship | Friendship? |
|
No | - |
| friendshipId | String? |
|
No | - |
| opened | Boolean |
|
Yes | - |
| post | Post? |
|
No | - |
| postId | String? |
|
No | - |
| type | NotificationType |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| user | User |
|
Yes | - |
| userId | String |
|
Yes | - |
Find zero or one Notification
// Get one Notification
const notification = await prisma.notification.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | NotificationWhereUniqueInput | Yes |
Find first Notification
// Get one Notification
const notification = await prisma.notification.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | NotificationWhereInput | No |
| orderBy | NotificationOrderByWithRelationInput[] | NotificationOrderByWithRelationInput | No |
| cursor | NotificationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | NotificationScalarFieldEnum[] | No |
Find zero or more Notification
// Get all Notification
const Notification = await prisma.notification.findMany()
// Get first 10 Notification
const Notification = await prisma.notification.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | NotificationWhereInput | No |
| orderBy | NotificationOrderByWithRelationInput[] | NotificationOrderByWithRelationInput | No |
| cursor | NotificationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | NotificationScalarFieldEnum[] | No |
Create one Notification
// Create one Notification
const Notification = await prisma.notification.create({
data: {
// ... data to create a Notification
}
})
| Name | Type | Required |
|---|---|---|
| data | NotificationCreateInput | NotificationUncheckedCreateInput | Yes |
Delete one Notification
// Delete one Notification
const Notification = await prisma.notification.delete({
where: {
// ... filter to delete one Notification
}
})
| Name | Type | Required |
|---|---|---|
| where | NotificationWhereUniqueInput | Yes |
Update one Notification
// Update one Notification
const notification = await prisma.notification.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | NotificationUpdateInput | NotificationUncheckedUpdateInput | Yes |
| where | NotificationWhereUniqueInput | Yes |
Delete zero or more Notification
// Delete a few Notification
const { count } = await prisma.notification.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | NotificationWhereInput | No |
Update zero or one Notification
const { count } = await prisma.notification.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | NotificationUpdateManyMutationInput | NotificationUncheckedUpdateManyInput | Yes |
| where | NotificationWhereInput | No |
Create or update one Notification
// Update or create a Notification
const notification = await prisma.notification.upsert({
create: {
// ... data to create a Notification
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Notification we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | NotificationWhereUniqueInput | Yes |
| create | NotificationCreateInput | NotificationUncheckedCreateInput | Yes |
| update | NotificationUpdateInput | NotificationUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| activities | UserActivity[] |
|
Yes | - |
| friender | User |
|
Yes | - |
| frienderId | String |
|
Yes | - |
| friending | User |
|
Yes | - |
| friendingId | String |
|
Yes | - |
| notifications | Notification[] |
|
Yes | - |
| rejected | Boolean |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one Friendship
// Get one Friendship
const friendship = await prisma.friendship.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FriendshipWhereUniqueInput | Yes |
Find first Friendship
// Get one Friendship
const friendship = await prisma.friendship.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FriendshipWhereInput | No |
| orderBy | FriendshipOrderByWithRelationInput[] | FriendshipOrderByWithRelationInput | No |
| cursor | FriendshipWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FriendshipScalarFieldEnum[] | No |
Find zero or more Friendship
// Get all Friendship
const Friendship = await prisma.friendship.findMany()
// Get first 10 Friendship
const Friendship = await prisma.friendship.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FriendshipWhereInput | No |
| orderBy | FriendshipOrderByWithRelationInput[] | FriendshipOrderByWithRelationInput | No |
| cursor | FriendshipWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FriendshipScalarFieldEnum[] | No |
Create one Friendship
// Create one Friendship
const Friendship = await prisma.friendship.create({
data: {
// ... data to create a Friendship
}
})
| Name | Type | Required |
|---|---|---|
| data | FriendshipCreateInput | FriendshipUncheckedCreateInput | Yes |
Delete one Friendship
// Delete one Friendship
const Friendship = await prisma.friendship.delete({
where: {
// ... filter to delete one Friendship
}
})
| Name | Type | Required |
|---|---|---|
| where | FriendshipWhereUniqueInput | Yes |
Update one Friendship
// Update one Friendship
const friendship = await prisma.friendship.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FriendshipUpdateInput | FriendshipUncheckedUpdateInput | Yes |
| where | FriendshipWhereUniqueInput | Yes |
Delete zero or more Friendship
// Delete a few Friendship
const { count } = await prisma.friendship.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FriendshipWhereInput | No |
Update zero or one Friendship
const { count } = await prisma.friendship.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FriendshipUpdateManyMutationInput | FriendshipUncheckedUpdateManyInput | Yes |
| where | FriendshipWhereInput | No |
Create or update one Friendship
// Update or create a Friendship
const friendship = await prisma.friendship.upsert({
create: {
// ... data to create a Friendship
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Friendship we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FriendshipWhereUniqueInput | Yes |
| create | FriendshipCreateInput | FriendshipUncheckedCreateInput | Yes |
| update | FriendshipUpdateInput | FriendshipUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| activities | UserActivity[] |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| followingSkill | FollowSkill? |
|
No | - |
| followingUser | FollowUser? |
|
No | - |
Find zero or one Follow
// Get one Follow
const follow = await prisma.follow.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowWhereUniqueInput | Yes |
Find first Follow
// Get one Follow
const follow = await prisma.follow.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowWhereInput | No |
| orderBy | FollowOrderByWithRelationInput[] | FollowOrderByWithRelationInput | No |
| cursor | FollowWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FollowScalarFieldEnum[] | No |
Find zero or more Follow
// Get all Follow
const Follow = await prisma.follow.findMany()
// Get first 10 Follow
const Follow = await prisma.follow.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FollowWhereInput | No |
| orderBy | FollowOrderByWithRelationInput[] | FollowOrderByWithRelationInput | No |
| cursor | FollowWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FollowScalarFieldEnum[] | No |
Create one Follow
// Create one Follow
const Follow = await prisma.follow.create({
data: {
// ... data to create a Follow
}
})
| Name | Type | Required |
|---|---|---|
| data | FollowCreateInput | FollowUncheckedCreateInput | Yes |
Delete one Follow
// Delete one Follow
const Follow = await prisma.follow.delete({
where: {
// ... filter to delete one Follow
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowWhereUniqueInput | Yes |
Update one Follow
// Update one Follow
const follow = await prisma.follow.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FollowUpdateInput | FollowUncheckedUpdateInput | Yes |
| where | FollowWhereUniqueInput | Yes |
Delete zero or more Follow
// Delete a few Follow
const { count } = await prisma.follow.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowWhereInput | No |
Update zero or one Follow
const { count } = await prisma.follow.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FollowUpdateManyMutationInput | FollowUncheckedUpdateManyInput | Yes |
| where | FollowWhereInput | No |
Create or update one Follow
// Update or create a Follow
const follow = await prisma.follow.upsert({
create: {
// ... data to create a Follow
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Follow we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowWhereUniqueInput | Yes |
| create | FollowCreateInput | FollowUncheckedCreateInput | Yes |
| update | FollowUpdateInput | FollowUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
Find zero or one FollowUser
// Get one FollowUser
const followUser = await prisma.followUser.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowUserWhereUniqueInput | Yes |
Find first FollowUser
// Get one FollowUser
const followUser = await prisma.followUser.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowUserWhereInput | No |
| orderBy | FollowUserOrderByWithRelationInput[] | FollowUserOrderByWithRelationInput | No |
| cursor | FollowUserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FollowUserScalarFieldEnum[] | No |
Find zero or more FollowUser
// Get all FollowUser
const FollowUser = await prisma.followUser.findMany()
// Get first 10 FollowUser
const FollowUser = await prisma.followUser.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FollowUserWhereInput | No |
| orderBy | FollowUserOrderByWithRelationInput[] | FollowUserOrderByWithRelationInput | No |
| cursor | FollowUserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FollowUserScalarFieldEnum[] | No |
Create one FollowUser
// Create one FollowUser
const FollowUser = await prisma.followUser.create({
data: {
// ... data to create a FollowUser
}
})
| Name | Type | Required |
|---|---|---|
| data | FollowUserCreateInput | FollowUserUncheckedCreateInput | Yes |
Delete one FollowUser
// Delete one FollowUser
const FollowUser = await prisma.followUser.delete({
where: {
// ... filter to delete one FollowUser
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowUserWhereUniqueInput | Yes |
Update one FollowUser
// Update one FollowUser
const followUser = await prisma.followUser.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FollowUserUpdateInput | FollowUserUncheckedUpdateInput | Yes |
| where | FollowUserWhereUniqueInput | Yes |
Delete zero or more FollowUser
// Delete a few FollowUser
const { count } = await prisma.followUser.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowUserWhereInput | No |
Update zero or one FollowUser
const { count } = await prisma.followUser.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FollowUserUpdateManyMutationInput | FollowUserUncheckedUpdateManyInput | Yes |
| where | FollowUserWhereInput | No |
Create or update one FollowUser
// Update or create a FollowUser
const followUser = await prisma.followUser.upsert({
create: {
// ... data to create a FollowUser
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the FollowUser we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowUserWhereUniqueInput | Yes |
| create | FollowUserCreateInput | FollowUserUncheckedCreateInput | Yes |
| update | FollowUserUpdateInput | FollowUserUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
Find zero or one FollowSkill
// Get one FollowSkill
const followSkill = await prisma.followSkill.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowSkillWhereUniqueInput | Yes |
Find first FollowSkill
// Get one FollowSkill
const followSkill = await prisma.followSkill.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowSkillWhereInput | No |
| orderBy | FollowSkillOrderByWithRelationInput[] | FollowSkillOrderByWithRelationInput | No |
| cursor | FollowSkillWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FollowSkillScalarFieldEnum[] | No |
Find zero or more FollowSkill
// Get all FollowSkill
const FollowSkill = await prisma.followSkill.findMany()
// Get first 10 FollowSkill
const FollowSkill = await prisma.followSkill.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FollowSkillWhereInput | No |
| orderBy | FollowSkillOrderByWithRelationInput[] | FollowSkillOrderByWithRelationInput | No |
| cursor | FollowSkillWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FollowSkillScalarFieldEnum[] | No |
Create one FollowSkill
// Create one FollowSkill
const FollowSkill = await prisma.followSkill.create({
data: {
// ... data to create a FollowSkill
}
})
| Name | Type | Required |
|---|---|---|
| data | FollowSkillCreateInput | FollowSkillUncheckedCreateInput | Yes |
Delete one FollowSkill
// Delete one FollowSkill
const FollowSkill = await prisma.followSkill.delete({
where: {
// ... filter to delete one FollowSkill
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowSkillWhereUniqueInput | Yes |
Update one FollowSkill
// Update one FollowSkill
const followSkill = await prisma.followSkill.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FollowSkillUpdateInput | FollowSkillUncheckedUpdateInput | Yes |
| where | FollowSkillWhereUniqueInput | Yes |
Delete zero or more FollowSkill
// Delete a few FollowSkill
const { count } = await prisma.followSkill.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowSkillWhereInput | No |
Update zero or one FollowSkill
const { count } = await prisma.followSkill.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FollowSkillUpdateManyMutationInput | FollowSkillUncheckedUpdateManyInput | Yes |
| where | FollowSkillWhereInput | No |
Create or update one FollowSkill
// Update or create a FollowSkill
const followSkill = await prisma.followSkill.upsert({
create: {
// ... data to create a FollowSkill
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the FollowSkill we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowSkillWhereUniqueInput | Yes |
| create | FollowSkillCreateInput | FollowSkillUncheckedCreateInput | Yes |
| update | FollowSkillUpdateInput | FollowSkillUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| messages | ChatMessage[] |
|
Yes | - |
| notifications | Notification[] |
|
Yes | - |
| users | ChatsOnUsers[] |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one Chat
// Get one Chat
const chat = await prisma.chat.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatWhereUniqueInput | Yes |
Find first Chat
// Get one Chat
const chat = await prisma.chat.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatWhereInput | No |
| orderBy | ChatOrderByWithRelationInput[] | ChatOrderByWithRelationInput | No |
| cursor | ChatWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChatScalarFieldEnum[] | No |
Find zero or more Chat
// Get all Chat
const Chat = await prisma.chat.findMany()
// Get first 10 Chat
const Chat = await prisma.chat.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ChatWhereInput | No |
| orderBy | ChatOrderByWithRelationInput[] | ChatOrderByWithRelationInput | No |
| cursor | ChatWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChatScalarFieldEnum[] | No |
Create one Chat
// Create one Chat
const Chat = await prisma.chat.create({
data: {
// ... data to create a Chat
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatCreateInput | ChatUncheckedCreateInput | Yes |
Delete one Chat
// Delete one Chat
const Chat = await prisma.chat.delete({
where: {
// ... filter to delete one Chat
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatWhereUniqueInput | Yes |
Update one Chat
// Update one Chat
const chat = await prisma.chat.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatUpdateInput | ChatUncheckedUpdateInput | Yes |
| where | ChatWhereUniqueInput | Yes |
Delete zero or more Chat
// Delete a few Chat
const { count } = await prisma.chat.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatWhereInput | No |
Update zero or one Chat
const { count } = await prisma.chat.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatUpdateManyMutationInput | ChatUncheckedUpdateManyInput | Yes |
| where | ChatWhereInput | No |
Create or update one Chat
// Update or create a Chat
const chat = await prisma.chat.upsert({
create: {
// ... data to create a Chat
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Chat we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatWhereUniqueInput | Yes |
| create | ChatCreateInput | ChatUncheckedCreateInput | Yes |
| update | ChatUpdateInput | ChatUncheckedUpdateInput | Yes |
Find zero or one ChatMessage
// Get one ChatMessage
const chatMessage = await prisma.chatMessage.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatMessageWhereUniqueInput | Yes |
Find first ChatMessage
// Get one ChatMessage
const chatMessage = await prisma.chatMessage.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatMessageWhereInput | No |
| orderBy | ChatMessageOrderByWithRelationInput[] | ChatMessageOrderByWithRelationInput | No |
| cursor | ChatMessageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChatMessageScalarFieldEnum[] | No |
Find zero or more ChatMessage
// Get all ChatMessage
const ChatMessage = await prisma.chatMessage.findMany()
// Get first 10 ChatMessage
const ChatMessage = await prisma.chatMessage.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ChatMessageWhereInput | No |
| orderBy | ChatMessageOrderByWithRelationInput[] | ChatMessageOrderByWithRelationInput | No |
| cursor | ChatMessageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChatMessageScalarFieldEnum[] | No |
Create one ChatMessage
// Create one ChatMessage
const ChatMessage = await prisma.chatMessage.create({
data: {
// ... data to create a ChatMessage
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatMessageCreateInput | ChatMessageUncheckedCreateInput | Yes |
Delete one ChatMessage
// Delete one ChatMessage
const ChatMessage = await prisma.chatMessage.delete({
where: {
// ... filter to delete one ChatMessage
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatMessageWhereUniqueInput | Yes |
Update one ChatMessage
// Update one ChatMessage
const chatMessage = await prisma.chatMessage.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatMessageUpdateInput | ChatMessageUncheckedUpdateInput | Yes |
| where | ChatMessageWhereUniqueInput | Yes |
Delete zero or more ChatMessage
// Delete a few ChatMessage
const { count } = await prisma.chatMessage.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatMessageWhereInput | No |
Update zero or one ChatMessage
const { count } = await prisma.chatMessage.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatMessageUpdateManyMutationInput | ChatMessageUncheckedUpdateManyInput | Yes |
| where | ChatMessageWhereInput | No |
Create or update one ChatMessage
// Update or create a ChatMessage
const chatMessage = await prisma.chatMessage.upsert({
create: {
// ... data to create a ChatMessage
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ChatMessage we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatMessageWhereUniqueInput | Yes |
| create | ChatMessageCreateInput | ChatMessageUncheckedCreateInput | Yes |
| update | ChatMessageUpdateInput | ChatMessageUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
Find zero or one ChatsOnUsers
// Get one ChatsOnUsers
const chatsOnUsers = await prisma.chatsOnUsers.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatsOnUsersWhereUniqueInput | Yes |
Find first ChatsOnUsers
// Get one ChatsOnUsers
const chatsOnUsers = await prisma.chatsOnUsers.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatsOnUsersWhereInput | No |
| orderBy | ChatsOnUsersOrderByWithRelationInput[] | ChatsOnUsersOrderByWithRelationInput | No |
| cursor | ChatsOnUsersWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChatsOnUsersScalarFieldEnum[] | No |
Find zero or more ChatsOnUsers
// Get all ChatsOnUsers
const ChatsOnUsers = await prisma.chatsOnUsers.findMany()
// Get first 10 ChatsOnUsers
const ChatsOnUsers = await prisma.chatsOnUsers.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ChatsOnUsersWhereInput | No |
| orderBy | ChatsOnUsersOrderByWithRelationInput[] | ChatsOnUsersOrderByWithRelationInput | No |
| cursor | ChatsOnUsersWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChatsOnUsersScalarFieldEnum[] | No |
Create one ChatsOnUsers
// Create one ChatsOnUsers
const ChatsOnUsers = await prisma.chatsOnUsers.create({
data: {
// ... data to create a ChatsOnUsers
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatsOnUsersCreateInput | ChatsOnUsersUncheckedCreateInput | Yes |
Delete one ChatsOnUsers
// Delete one ChatsOnUsers
const ChatsOnUsers = await prisma.chatsOnUsers.delete({
where: {
// ... filter to delete one ChatsOnUsers
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatsOnUsersWhereUniqueInput | Yes |
Update one ChatsOnUsers
// Update one ChatsOnUsers
const chatsOnUsers = await prisma.chatsOnUsers.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatsOnUsersUpdateInput | ChatsOnUsersUncheckedUpdateInput | Yes |
| where | ChatsOnUsersWhereUniqueInput | Yes |
Delete zero or more ChatsOnUsers
// Delete a few ChatsOnUsers
const { count } = await prisma.chatsOnUsers.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatsOnUsersWhereInput | No |
Update zero or one ChatsOnUsers
const { count } = await prisma.chatsOnUsers.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatsOnUsersUpdateManyMutationInput | ChatsOnUsersUncheckedUpdateManyInput | Yes |
| where | ChatsOnUsersWhereInput | No |
Create or update one ChatsOnUsers
// Update or create a ChatsOnUsers
const chatsOnUsers = await prisma.chatsOnUsers.upsert({
create: {
// ... data to create a ChatsOnUsers
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ChatsOnUsers we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatsOnUsersWhereUniqueInput | Yes |
| create | ChatsOnUsersCreateInput | ChatsOnUsersUncheckedCreateInput | Yes |
| update | ChatsOnUsersUpdateInput | ChatsOnUsersUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| activities | UserActivity[] |
|
Yes | - |
| author | User |
|
Yes | - |
| authorName | String |
|
Yes | - |
| comments | Comment[] |
|
Yes | - |
| content | Json? |
|
No | - |
| createdAt | DateTime |
|
Yes | - |
| description | String? |
|
No | - |
| id | String |
|
Yes | - |
| images | PostImage[] |
|
Yes | - |
| notifications | Notification[] |
|
Yes | - |
| publishedAt | DateTime? |
|
No | - |
| readTime | Int? |
|
No | - |
| skills | SkillsOnPosts[] |
|
Yes | - |
| title | String? |
|
No | - |
| thumbnailUrl | String? |
|
No | - |
| updatedAt | DateTime |
|
Yes | - |
| upvoters | PostUpvoter[] |
|
Yes | - |
| urlSlug | String |
|
Yes | - |
Find zero or one Post
// Get one Post
const post = await prisma.post.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PostWhereUniqueInput | Yes |
Find first Post
// Get one Post
const post = await prisma.post.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PostWhereInput | No |
| orderBy | PostOrderByWithRelationInput[] | PostOrderByWithRelationInput | No |
| cursor | PostWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PostScalarFieldEnum[] | No |
Find zero or more Post
// Get all Post
const Post = await prisma.post.findMany()
// Get first 10 Post
const Post = await prisma.post.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PostWhereInput | No |
| orderBy | PostOrderByWithRelationInput[] | PostOrderByWithRelationInput | No |
| cursor | PostWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PostScalarFieldEnum[] | No |
Create one Post
// Create one Post
const Post = await prisma.post.create({
data: {
// ... data to create a Post
}
})
| Name | Type | Required |
|---|---|---|
| data | PostCreateInput | PostUncheckedCreateInput | Yes |
Delete one Post
// Delete one Post
const Post = await prisma.post.delete({
where: {
// ... filter to delete one Post
}
})
| Name | Type | Required |
|---|---|---|
| where | PostWhereUniqueInput | Yes |
Update one Post
// Update one Post
const post = await prisma.post.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PostUpdateInput | PostUncheckedUpdateInput | Yes |
| where | PostWhereUniqueInput | Yes |
Delete zero or more Post
// Delete a few Post
const { count } = await prisma.post.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PostWhereInput | No |
Update zero or one Post
const { count } = await prisma.post.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PostUpdateManyMutationInput | PostUncheckedUpdateManyInput | Yes |
| where | PostWhereInput | No |
Create or update one Post
// Update or create a Post
const post = await prisma.post.upsert({
create: {
// ... data to create a Post
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Post we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PostWhereUniqueInput | Yes |
| create | PostCreateInput | PostUncheckedCreateInput | Yes |
| update | PostUpdateInput | PostUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
Find zero or one PostUpvoter
// Get one PostUpvoter
const postUpvoter = await prisma.postUpvoter.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PostUpvoterWhereUniqueInput | Yes |
Find first PostUpvoter
// Get one PostUpvoter
const postUpvoter = await prisma.postUpvoter.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PostUpvoterWhereInput | No |
| orderBy | PostUpvoterOrderByWithRelationInput[] | PostUpvoterOrderByWithRelationInput | No |
| cursor | PostUpvoterWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PostUpvoterScalarFieldEnum[] | No |
Find zero or more PostUpvoter
// Get all PostUpvoter
const PostUpvoter = await prisma.postUpvoter.findMany()
// Get first 10 PostUpvoter
const PostUpvoter = await prisma.postUpvoter.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PostUpvoterWhereInput | No |
| orderBy | PostUpvoterOrderByWithRelationInput[] | PostUpvoterOrderByWithRelationInput | No |
| cursor | PostUpvoterWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PostUpvoterScalarFieldEnum[] | No |
Create one PostUpvoter
// Create one PostUpvoter
const PostUpvoter = await prisma.postUpvoter.create({
data: {
// ... data to create a PostUpvoter
}
})
| Name | Type | Required |
|---|---|---|
| data | PostUpvoterCreateInput | PostUpvoterUncheckedCreateInput | Yes |
Delete one PostUpvoter
// Delete one PostUpvoter
const PostUpvoter = await prisma.postUpvoter.delete({
where: {
// ... filter to delete one PostUpvoter
}
})
| Name | Type | Required |
|---|---|---|
| where | PostUpvoterWhereUniqueInput | Yes |
Update one PostUpvoter
// Update one PostUpvoter
const postUpvoter = await prisma.postUpvoter.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PostUpvoterUpdateInput | PostUpvoterUncheckedUpdateInput | Yes |
| where | PostUpvoterWhereUniqueInput | Yes |
Delete zero or more PostUpvoter
// Delete a few PostUpvoter
const { count } = await prisma.postUpvoter.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PostUpvoterWhereInput | No |
Update zero or one PostUpvoter
const { count } = await prisma.postUpvoter.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PostUpvoterUpdateManyMutationInput | PostUpvoterUncheckedUpdateManyInput | Yes |
| where | PostUpvoterWhereInput | No |
Create or update one PostUpvoter
// Update or create a PostUpvoter
const postUpvoter = await prisma.postUpvoter.upsert({
create: {
// ... data to create a PostUpvoter
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PostUpvoter we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PostUpvoterWhereUniqueInput | Yes |
| create | PostUpvoterCreateInput | PostUpvoterUncheckedCreateInput | Yes |
| update | PostUpvoterUpdateInput | PostUpvoterUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| post | Post |
|
Yes | - |
| postId | String |
|
Yes | - |
| url | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
Find zero or one PostImage
// Get one PostImage
const postImage = await prisma.postImage.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PostImageWhereUniqueInput | Yes |
Find first PostImage
// Get one PostImage
const postImage = await prisma.postImage.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PostImageWhereInput | No |
| orderBy | PostImageOrderByWithRelationInput[] | PostImageOrderByWithRelationInput | No |
| cursor | PostImageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PostImageScalarFieldEnum[] | No |
Find zero or more PostImage
// Get all PostImage
const PostImage = await prisma.postImage.findMany()
// Get first 10 PostImage
const PostImage = await prisma.postImage.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PostImageWhereInput | No |
| orderBy | PostImageOrderByWithRelationInput[] | PostImageOrderByWithRelationInput | No |
| cursor | PostImageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PostImageScalarFieldEnum[] | No |
Create one PostImage
// Create one PostImage
const PostImage = await prisma.postImage.create({
data: {
// ... data to create a PostImage
}
})
| Name | Type | Required |
|---|---|---|
| data | PostImageCreateInput | PostImageUncheckedCreateInput | Yes |
Delete one PostImage
// Delete one PostImage
const PostImage = await prisma.postImage.delete({
where: {
// ... filter to delete one PostImage
}
})
| Name | Type | Required |
|---|---|---|
| where | PostImageWhereUniqueInput | Yes |
Update one PostImage
// Update one PostImage
const postImage = await prisma.postImage.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PostImageUpdateInput | PostImageUncheckedUpdateInput | Yes |
| where | PostImageWhereUniqueInput | Yes |
Delete zero or more PostImage
// Delete a few PostImage
const { count } = await prisma.postImage.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PostImageWhereInput | No |
Update zero or one PostImage
const { count } = await prisma.postImage.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PostImageUpdateManyMutationInput | PostImageUncheckedUpdateManyInput | Yes |
| where | PostImageWhereInput | No |
Create or update one PostImage
// Update or create a PostImage
const postImage = await prisma.postImage.upsert({
create: {
// ... data to create a PostImage
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PostImage we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PostImageWhereUniqueInput | Yes |
| create | PostImageCreateInput | PostImageUncheckedCreateInput | Yes |
| update | PostImageUpdateInput | PostImageUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| activities | UserActivity[] |
|
Yes | - |
| author | User |
|
Yes | - |
| authorId | String |
|
Yes | - |
| content | Json? |
|
No | - |
| createdAt | DateTime |
|
Yes | - |
| parent | Comment? |
|
No | - |
| parentId | String? |
|
No | - |
| post | Post? |
|
No | - |
| postId | String? |
|
No | - |
| replies | Comment[] |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| upvoters | CommentUpvoter[] |
|
Yes | - |
Find zero or one Comment
// Get one Comment
const comment = await prisma.comment.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereUniqueInput | Yes |
Find first Comment
// Get one Comment
const comment = await prisma.comment.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereInput | No |
| orderBy | CommentOrderByWithRelationInput[] | CommentOrderByWithRelationInput | No |
| cursor | CommentWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CommentScalarFieldEnum[] | No |
Find zero or more Comment
// Get all Comment
const Comment = await prisma.comment.findMany()
// Get first 10 Comment
const Comment = await prisma.comment.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CommentWhereInput | No |
| orderBy | CommentOrderByWithRelationInput[] | CommentOrderByWithRelationInput | No |
| cursor | CommentWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CommentScalarFieldEnum[] | No |
Create one Comment
// Create one Comment
const Comment = await prisma.comment.create({
data: {
// ... data to create a Comment
}
})
| Name | Type | Required |
|---|---|---|
| data | CommentCreateInput | CommentUncheckedCreateInput | Yes |
Delete one Comment
// Delete one Comment
const Comment = await prisma.comment.delete({
where: {
// ... filter to delete one Comment
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereUniqueInput | Yes |
Update one Comment
// Update one Comment
const comment = await prisma.comment.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CommentUpdateInput | CommentUncheckedUpdateInput | Yes |
| where | CommentWhereUniqueInput | Yes |
Delete zero or more Comment
// Delete a few Comment
const { count } = await prisma.comment.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereInput | No |
Update zero or one Comment
const { count } = await prisma.comment.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CommentUpdateManyMutationInput | CommentUncheckedUpdateManyInput | Yes |
| where | CommentWhereInput | No |
Create or update one Comment
// Update or create a Comment
const comment = await prisma.comment.upsert({
create: {
// ... data to create a Comment
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Comment we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereUniqueInput | Yes |
| create | CommentCreateInput | CommentUncheckedCreateInput | Yes |
| update | CommentUpdateInput | CommentUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
Find zero or one CommentUpvoter
// Get one CommentUpvoter
const commentUpvoter = await prisma.commentUpvoter.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentUpvoterWhereUniqueInput | Yes |
Find first CommentUpvoter
// Get one CommentUpvoter
const commentUpvoter = await prisma.commentUpvoter.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentUpvoterWhereInput | No |
| orderBy | CommentUpvoterOrderByWithRelationInput[] | CommentUpvoterOrderByWithRelationInput | No |
| cursor | CommentUpvoterWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CommentUpvoterScalarFieldEnum[] | No |
Find zero or more CommentUpvoter
// Get all CommentUpvoter
const CommentUpvoter = await prisma.commentUpvoter.findMany()
// Get first 10 CommentUpvoter
const CommentUpvoter = await prisma.commentUpvoter.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CommentUpvoterWhereInput | No |
| orderBy | CommentUpvoterOrderByWithRelationInput[] | CommentUpvoterOrderByWithRelationInput | No |
| cursor | CommentUpvoterWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CommentUpvoterScalarFieldEnum[] | No |
Create one CommentUpvoter
// Create one CommentUpvoter
const CommentUpvoter = await prisma.commentUpvoter.create({
data: {
// ... data to create a CommentUpvoter
}
})
| Name | Type | Required |
|---|---|---|
| data | CommentUpvoterCreateInput | CommentUpvoterUncheckedCreateInput | Yes |
Delete one CommentUpvoter
// Delete one CommentUpvoter
const CommentUpvoter = await prisma.commentUpvoter.delete({
where: {
// ... filter to delete one CommentUpvoter
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentUpvoterWhereUniqueInput | Yes |
Update one CommentUpvoter
// Update one CommentUpvoter
const commentUpvoter = await prisma.commentUpvoter.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CommentUpvoterUpdateInput | CommentUpvoterUncheckedUpdateInput | Yes |
| where | CommentUpvoterWhereUniqueInput | Yes |
Delete zero or more CommentUpvoter
// Delete a few CommentUpvoter
const { count } = await prisma.commentUpvoter.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentUpvoterWhereInput | No |
Update zero or one CommentUpvoter
const { count } = await prisma.commentUpvoter.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CommentUpvoterUpdateManyMutationInput | CommentUpvoterUncheckedUpdateManyInput | Yes |
| where | CommentUpvoterWhereInput | No |
Create or update one CommentUpvoter
// Update or create a CommentUpvoter
const commentUpvoter = await prisma.commentUpvoter.upsert({
create: {
// ... data to create a CommentUpvoter
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the CommentUpvoter we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentUpvoterWhereUniqueInput | Yes |
| create | CommentUpvoterCreateInput | CommentUpvoterUncheckedCreateInput | Yes |
| update | CommentUpvoterUpdateInput | CommentUpvoterUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| owner | String |
|
Yes | - |
| users | SkillsOnUsers[] |
|
Yes | - |
| desiringUsers | DesiredSkillsOnUsers[] |
|
Yes | - |
| posts | SkillsOnPosts[] |
|
Yes | - |
| repositories | SkillsOnRepositories[] |
|
Yes | - |
| followedBy | FollowSkill[] |
|
Yes | - |
Find zero or one Skill
// Get one Skill
const skill = await prisma.skill.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillWhereUniqueInput | Yes |
Find first Skill
// Get one Skill
const skill = await prisma.skill.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillWhereInput | No |
| orderBy | SkillOrderByWithRelationInput[] | SkillOrderByWithRelationInput | No |
| cursor | SkillWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SkillScalarFieldEnum[] | No |
Find zero or more Skill
// Get all Skill
const Skill = await prisma.skill.findMany()
// Get first 10 Skill
const Skill = await prisma.skill.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SkillWhereInput | No |
| orderBy | SkillOrderByWithRelationInput[] | SkillOrderByWithRelationInput | No |
| cursor | SkillWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SkillScalarFieldEnum[] | No |
Create one Skill
// Create one Skill
const Skill = await prisma.skill.create({
data: {
// ... data to create a Skill
}
})
| Name | Type | Required |
|---|---|---|
| data | SkillCreateInput | SkillUncheckedCreateInput | Yes |
Delete one Skill
// Delete one Skill
const Skill = await prisma.skill.delete({
where: {
// ... filter to delete one Skill
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillWhereUniqueInput | Yes |
Update one Skill
// Update one Skill
const skill = await prisma.skill.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SkillUpdateInput | SkillUncheckedUpdateInput | Yes |
| where | SkillWhereUniqueInput | Yes |
Delete zero or more Skill
// Delete a few Skill
const { count } = await prisma.skill.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillWhereInput | No |
Update zero or one Skill
const { count } = await prisma.skill.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SkillUpdateManyMutationInput | SkillUncheckedUpdateManyInput | Yes |
| where | SkillWhereInput | No |
Create or update one Skill
// Update or create a Skill
const skill = await prisma.skill.upsert({
create: {
// ... data to create a Skill
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Skill we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillWhereUniqueInput | Yes |
| create | SkillCreateInput | SkillUncheckedCreateInput | Yes |
| update | SkillUpdateInput | SkillUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
Find zero or one SkillsOnPosts
// Get one SkillsOnPosts
const skillsOnPosts = await prisma.skillsOnPosts.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillsOnPostsWhereUniqueInput | Yes |
Find first SkillsOnPosts
// Get one SkillsOnPosts
const skillsOnPosts = await prisma.skillsOnPosts.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillsOnPostsWhereInput | No |
| orderBy | SkillsOnPostsOrderByWithRelationInput[] | SkillsOnPostsOrderByWithRelationInput | No |
| cursor | SkillsOnPostsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SkillsOnPostsScalarFieldEnum[] | No |
Find zero or more SkillsOnPosts
// Get all SkillsOnPosts
const SkillsOnPosts = await prisma.skillsOnPosts.findMany()
// Get first 10 SkillsOnPosts
const SkillsOnPosts = await prisma.skillsOnPosts.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SkillsOnPostsWhereInput | No |
| orderBy | SkillsOnPostsOrderByWithRelationInput[] | SkillsOnPostsOrderByWithRelationInput | No |
| cursor | SkillsOnPostsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SkillsOnPostsScalarFieldEnum[] | No |
Create one SkillsOnPosts
// Create one SkillsOnPosts
const SkillsOnPosts = await prisma.skillsOnPosts.create({
data: {
// ... data to create a SkillsOnPosts
}
})
| Name | Type | Required |
|---|---|---|
| data | SkillsOnPostsCreateInput | SkillsOnPostsUncheckedCreateInput | Yes |
Delete one SkillsOnPosts
// Delete one SkillsOnPosts
const SkillsOnPosts = await prisma.skillsOnPosts.delete({
where: {
// ... filter to delete one SkillsOnPosts
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillsOnPostsWhereUniqueInput | Yes |
Update one SkillsOnPosts
// Update one SkillsOnPosts
const skillsOnPosts = await prisma.skillsOnPosts.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SkillsOnPostsUpdateInput | SkillsOnPostsUncheckedUpdateInput | Yes |
| where | SkillsOnPostsWhereUniqueInput | Yes |
Delete zero or more SkillsOnPosts
// Delete a few SkillsOnPosts
const { count } = await prisma.skillsOnPosts.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillsOnPostsWhereInput | No |
Update zero or one SkillsOnPosts
const { count } = await prisma.skillsOnPosts.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SkillsOnPostsUpdateManyMutationInput | SkillsOnPostsUncheckedUpdateManyInput | Yes |
| where | SkillsOnPostsWhereInput | No |
Create or update one SkillsOnPosts
// Update or create a SkillsOnPosts
const skillsOnPosts = await prisma.skillsOnPosts.upsert({
create: {
// ... data to create a SkillsOnPosts
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the SkillsOnPosts we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillsOnPostsWhereUniqueInput | Yes |
| create | SkillsOnPostsCreateInput | SkillsOnPostsUncheckedCreateInput | Yes |
| update | SkillsOnPostsUpdateInput | SkillsOnPostsUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
Find zero or one SkillsOnUsers
// Get one SkillsOnUsers
const skillsOnUsers = await prisma.skillsOnUsers.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillsOnUsersWhereUniqueInput | Yes |
Find first SkillsOnUsers
// Get one SkillsOnUsers
const skillsOnUsers = await prisma.skillsOnUsers.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillsOnUsersWhereInput | No |
| orderBy | SkillsOnUsersOrderByWithRelationInput[] | SkillsOnUsersOrderByWithRelationInput | No |
| cursor | SkillsOnUsersWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SkillsOnUsersScalarFieldEnum[] | No |
Find zero or more SkillsOnUsers
// Get all SkillsOnUsers
const SkillsOnUsers = await prisma.skillsOnUsers.findMany()
// Get first 10 SkillsOnUsers
const SkillsOnUsers = await prisma.skillsOnUsers.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SkillsOnUsersWhereInput | No |
| orderBy | SkillsOnUsersOrderByWithRelationInput[] | SkillsOnUsersOrderByWithRelationInput | No |
| cursor | SkillsOnUsersWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SkillsOnUsersScalarFieldEnum[] | No |
Create one SkillsOnUsers
// Create one SkillsOnUsers
const SkillsOnUsers = await prisma.skillsOnUsers.create({
data: {
// ... data to create a SkillsOnUsers
}
})
| Name | Type | Required |
|---|---|---|
| data | SkillsOnUsersCreateInput | SkillsOnUsersUncheckedCreateInput | Yes |
Delete one SkillsOnUsers
// Delete one SkillsOnUsers
const SkillsOnUsers = await prisma.skillsOnUsers.delete({
where: {
// ... filter to delete one SkillsOnUsers
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillsOnUsersWhereUniqueInput | Yes |
Update one SkillsOnUsers
// Update one SkillsOnUsers
const skillsOnUsers = await prisma.skillsOnUsers.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SkillsOnUsersUpdateInput | SkillsOnUsersUncheckedUpdateInput | Yes |
| where | SkillsOnUsersWhereUniqueInput | Yes |
Delete zero or more SkillsOnUsers
// Delete a few SkillsOnUsers
const { count } = await prisma.skillsOnUsers.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillsOnUsersWhereInput | No |
Update zero or one SkillsOnUsers
const { count } = await prisma.skillsOnUsers.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SkillsOnUsersUpdateManyMutationInput | SkillsOnUsersUncheckedUpdateManyInput | Yes |
| where | SkillsOnUsersWhereInput | No |
Create or update one SkillsOnUsers
// Update or create a SkillsOnUsers
const skillsOnUsers = await prisma.skillsOnUsers.upsert({
create: {
// ... data to create a SkillsOnUsers
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the SkillsOnUsers we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillsOnUsersWhereUniqueInput | Yes |
| create | SkillsOnUsersCreateInput | SkillsOnUsersUncheckedCreateInput | Yes |
| update | SkillsOnUsersUpdateInput | SkillsOnUsersUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
Find zero or one DesiredSkillsOnUsers
// Get one DesiredSkillsOnUsers
const desiredSkillsOnUsers = await prisma.desiredSkillsOnUsers.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DesiredSkillsOnUsersWhereUniqueInput | Yes |
Find first DesiredSkillsOnUsers
// Get one DesiredSkillsOnUsers
const desiredSkillsOnUsers = await prisma.desiredSkillsOnUsers.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DesiredSkillsOnUsersWhereInput | No |
| orderBy | DesiredSkillsOnUsersOrderByWithRelationInput[] | DesiredSkillsOnUsersOrderByWithRelationInput | No |
| cursor | DesiredSkillsOnUsersWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | DesiredSkillsOnUsersScalarFieldEnum[] | No |
Find zero or more DesiredSkillsOnUsers
// Get all DesiredSkillsOnUsers
const DesiredSkillsOnUsers = await prisma.desiredSkillsOnUsers.findMany()
// Get first 10 DesiredSkillsOnUsers
const DesiredSkillsOnUsers = await prisma.desiredSkillsOnUsers.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | DesiredSkillsOnUsersWhereInput | No |
| orderBy | DesiredSkillsOnUsersOrderByWithRelationInput[] | DesiredSkillsOnUsersOrderByWithRelationInput | No |
| cursor | DesiredSkillsOnUsersWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | DesiredSkillsOnUsersScalarFieldEnum[] | No |
Create one DesiredSkillsOnUsers
// Create one DesiredSkillsOnUsers
const DesiredSkillsOnUsers = await prisma.desiredSkillsOnUsers.create({
data: {
// ... data to create a DesiredSkillsOnUsers
}
})
| Name | Type | Required |
|---|---|---|
| data | DesiredSkillsOnUsersCreateInput | DesiredSkillsOnUsersUncheckedCreateInput | Yes |
Delete one DesiredSkillsOnUsers
// Delete one DesiredSkillsOnUsers
const DesiredSkillsOnUsers = await prisma.desiredSkillsOnUsers.delete({
where: {
// ... filter to delete one DesiredSkillsOnUsers
}
})
| Name | Type | Required |
|---|---|---|
| where | DesiredSkillsOnUsersWhereUniqueInput | Yes |
Update one DesiredSkillsOnUsers
// Update one DesiredSkillsOnUsers
const desiredSkillsOnUsers = await prisma.desiredSkillsOnUsers.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | DesiredSkillsOnUsersUpdateInput | DesiredSkillsOnUsersUncheckedUpdateInput | Yes |
| where | DesiredSkillsOnUsersWhereUniqueInput | Yes |
Delete zero or more DesiredSkillsOnUsers
// Delete a few DesiredSkillsOnUsers
const { count } = await prisma.desiredSkillsOnUsers.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DesiredSkillsOnUsersWhereInput | No |
Update zero or one DesiredSkillsOnUsers
const { count } = await prisma.desiredSkillsOnUsers.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | DesiredSkillsOnUsersUpdateManyMutationInput | DesiredSkillsOnUsersUncheckedUpdateManyInput | Yes |
| where | DesiredSkillsOnUsersWhereInput | No |
Create or update one DesiredSkillsOnUsers
// Update or create a DesiredSkillsOnUsers
const desiredSkillsOnUsers = await prisma.desiredSkillsOnUsers.upsert({
create: {
// ... data to create a DesiredSkillsOnUsers
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the DesiredSkillsOnUsers we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | DesiredSkillsOnUsersWhereUniqueInput | Yes |
| create | DesiredSkillsOnUsersCreateInput | DesiredSkillsOnUsersUncheckedCreateInput | Yes |
| update | DesiredSkillsOnUsersUpdateInput | DesiredSkillsOnUsersUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| skills | SkillsOnRepositories[] |
|
Yes | - |
| user | User |
|
Yes | - |
| owner | String |
|
Yes | - |
Find zero or one Repository
// Get one Repository
const repository = await prisma.repository.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RepositoryWhereUniqueInput | Yes |
Find first Repository
// Get one Repository
const repository = await prisma.repository.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RepositoryWhereInput | No |
| orderBy | RepositoryOrderByWithRelationInput[] | RepositoryOrderByWithRelationInput | No |
| cursor | RepositoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RepositoryScalarFieldEnum[] | No |
Find zero or more Repository
// Get all Repository
const Repository = await prisma.repository.findMany()
// Get first 10 Repository
const Repository = await prisma.repository.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RepositoryWhereInput | No |
| orderBy | RepositoryOrderByWithRelationInput[] | RepositoryOrderByWithRelationInput | No |
| cursor | RepositoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RepositoryScalarFieldEnum[] | No |
Create one Repository
// Create one Repository
const Repository = await prisma.repository.create({
data: {
// ... data to create a Repository
}
})
| Name | Type | Required |
|---|---|---|
| data | RepositoryCreateInput | RepositoryUncheckedCreateInput | Yes |
Delete one Repository
// Delete one Repository
const Repository = await prisma.repository.delete({
where: {
// ... filter to delete one Repository
}
})
| Name | Type | Required |
|---|---|---|
| where | RepositoryWhereUniqueInput | Yes |
Update one Repository
// Update one Repository
const repository = await prisma.repository.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RepositoryUpdateInput | RepositoryUncheckedUpdateInput | Yes |
| where | RepositoryWhereUniqueInput | Yes |
Delete zero or more Repository
// Delete a few Repository
const { count } = await prisma.repository.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RepositoryWhereInput | No |
Update zero or one Repository
const { count } = await prisma.repository.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RepositoryUpdateManyMutationInput | RepositoryUncheckedUpdateManyInput | Yes |
| where | RepositoryWhereInput | No |
Create or update one Repository
// Update or create a Repository
const repository = await prisma.repository.upsert({
create: {
// ... data to create a Repository
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Repository we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RepositoryWhereUniqueInput | Yes |
| create | RepositoryCreateInput | RepositoryUncheckedCreateInput | Yes |
| update | RepositoryUpdateInput | RepositoryUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| skill | Skill |
|
Yes | - |
| skillId | String |
|
Yes | - |
| repository | Repository |
|
Yes | - |
| repositoryId | String |
|
Yes | - |
Find zero or one SkillsOnRepositories
// Get one SkillsOnRepositories
const skillsOnRepositories = await prisma.skillsOnRepositories.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillsOnRepositoriesWhereUniqueInput | Yes |
Find first SkillsOnRepositories
// Get one SkillsOnRepositories
const skillsOnRepositories = await prisma.skillsOnRepositories.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillsOnRepositoriesWhereInput | No |
| orderBy | SkillsOnRepositoriesOrderByWithRelationInput[] | SkillsOnRepositoriesOrderByWithRelationInput | No |
| cursor | SkillsOnRepositoriesWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SkillsOnRepositoriesScalarFieldEnum[] | No |
Find zero or more SkillsOnRepositories
// Get all SkillsOnRepositories
const SkillsOnRepositories = await prisma.skillsOnRepositories.findMany()
// Get first 10 SkillsOnRepositories
const SkillsOnRepositories = await prisma.skillsOnRepositories.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SkillsOnRepositoriesWhereInput | No |
| orderBy | SkillsOnRepositoriesOrderByWithRelationInput[] | SkillsOnRepositoriesOrderByWithRelationInput | No |
| cursor | SkillsOnRepositoriesWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SkillsOnRepositoriesScalarFieldEnum[] | No |
Create one SkillsOnRepositories
// Create one SkillsOnRepositories
const SkillsOnRepositories = await prisma.skillsOnRepositories.create({
data: {
// ... data to create a SkillsOnRepositories
}
})
| Name | Type | Required |
|---|---|---|
| data | SkillsOnRepositoriesCreateInput | SkillsOnRepositoriesUncheckedCreateInput | Yes |
Delete one SkillsOnRepositories
// Delete one SkillsOnRepositories
const SkillsOnRepositories = await prisma.skillsOnRepositories.delete({
where: {
// ... filter to delete one SkillsOnRepositories
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillsOnRepositoriesWhereUniqueInput | Yes |
Update one SkillsOnRepositories
// Update one SkillsOnRepositories
const skillsOnRepositories = await prisma.skillsOnRepositories.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SkillsOnRepositoriesUpdateInput | SkillsOnRepositoriesUncheckedUpdateInput | Yes |
| where | SkillsOnRepositoriesWhereUniqueInput | Yes |
Delete zero or more SkillsOnRepositories
// Delete a few SkillsOnRepositories
const { count } = await prisma.skillsOnRepositories.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillsOnRepositoriesWhereInput | No |
Update zero or one SkillsOnRepositories
const { count } = await prisma.skillsOnRepositories.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SkillsOnRepositoriesUpdateManyMutationInput | SkillsOnRepositoriesUncheckedUpdateManyInput | Yes |
| where | SkillsOnRepositoriesWhereInput | No |
Create or update one SkillsOnRepositories
// Update or create a SkillsOnRepositories
const skillsOnRepositories = await prisma.skillsOnRepositories.upsert({
create: {
// ... data to create a SkillsOnRepositories
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the SkillsOnRepositories we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SkillsOnRepositoriesWhereUniqueInput | Yes |
| create | SkillsOnRepositoriesCreateInput | SkillsOnRepositoriesUncheckedCreateInput | Yes |
| update | SkillsOnRepositoriesUpdateInput | SkillsOnRepositoriesUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| experiences | Experience[] |
|
Yes | - |
Find zero or one Organization
// Get one Organization
const organization = await prisma.organization.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationWhereUniqueInput | Yes |
Find first Organization
// Get one Organization
const organization = await prisma.organization.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationWhereInput | No |
| orderBy | OrganizationOrderByWithRelationInput[] | OrganizationOrderByWithRelationInput | No |
| cursor | OrganizationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrganizationScalarFieldEnum[] | No |
Find zero or more Organization
// Get all Organization
const Organization = await prisma.organization.findMany()
// Get first 10 Organization
const Organization = await prisma.organization.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | OrganizationWhereInput | No |
| orderBy | OrganizationOrderByWithRelationInput[] | OrganizationOrderByWithRelationInput | No |
| cursor | OrganizationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrganizationScalarFieldEnum[] | No |
Create one Organization
// Create one Organization
const Organization = await prisma.organization.create({
data: {
// ... data to create a Organization
}
})
| Name | Type | Required |
|---|---|---|
| data | OrganizationCreateInput | OrganizationUncheckedCreateInput | Yes |
Delete one Organization
// Delete one Organization
const Organization = await prisma.organization.delete({
where: {
// ... filter to delete one Organization
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationWhereUniqueInput | Yes |
Update one Organization
// Update one Organization
const organization = await prisma.organization.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrganizationUpdateInput | OrganizationUncheckedUpdateInput | Yes |
| where | OrganizationWhereUniqueInput | Yes |
Delete zero or more Organization
// Delete a few Organization
const { count } = await prisma.organization.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationWhereInput | No |
Update zero or one Organization
const { count } = await prisma.organization.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrganizationUpdateManyMutationInput | OrganizationUncheckedUpdateManyInput | Yes |
| where | OrganizationWhereInput | No |
Create or update one Organization
// Update or create a Organization
const organization = await prisma.organization.upsert({
create: {
// ... data to create a Organization
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Organization we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationWhereUniqueInput | Yes |
| create | OrganizationCreateInput | OrganizationUncheckedCreateInput | Yes |
| update | OrganizationUpdateInput | OrganizationUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| endDate | DateTime? |
|
No | - |
| highlights | String[] |
|
Yes | - |
| location | String? |
|
No | - |
| organization | Organization |
|
Yes | - |
| organizationName | String |
|
Yes | - |
| positionName | String |
|
Yes | - |
| startDate | DateTime |
|
Yes | - |
| type | ExperienceType? |
|
No | - |
| user | User |
|
Yes | - |
| userId | String |
|
Yes | - |
Find zero or one Experience
// Get one Experience
const experience = await prisma.experience.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ExperienceWhereUniqueInput | Yes |
Find first Experience
// Get one Experience
const experience = await prisma.experience.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ExperienceWhereInput | No |
| orderBy | ExperienceOrderByWithRelationInput[] | ExperienceOrderByWithRelationInput | No |
| cursor | ExperienceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ExperienceScalarFieldEnum[] | No |
Find zero or more Experience
// Get all Experience
const Experience = await prisma.experience.findMany()
// Get first 10 Experience
const Experience = await prisma.experience.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ExperienceWhereInput | No |
| orderBy | ExperienceOrderByWithRelationInput[] | ExperienceOrderByWithRelationInput | No |
| cursor | ExperienceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ExperienceScalarFieldEnum[] | No |
Create one Experience
// Create one Experience
const Experience = await prisma.experience.create({
data: {
// ... data to create a Experience
}
})
| Name | Type | Required |
|---|---|---|
| data | ExperienceCreateInput | ExperienceUncheckedCreateInput | Yes |
Delete one Experience
// Delete one Experience
const Experience = await prisma.experience.delete({
where: {
// ... filter to delete one Experience
}
})
| Name | Type | Required |
|---|---|---|
| where | ExperienceWhereUniqueInput | Yes |
Update one Experience
// Update one Experience
const experience = await prisma.experience.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ExperienceUpdateInput | ExperienceUncheckedUpdateInput | Yes |
| where | ExperienceWhereUniqueInput | Yes |
Delete zero or more Experience
// Delete a few Experience
const { count } = await prisma.experience.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ExperienceWhereInput | No |
Update zero or one Experience
const { count } = await prisma.experience.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ExperienceUpdateManyMutationInput | ExperienceUncheckedUpdateManyInput | Yes |
| where | ExperienceWhereInput | No |
Create or update one Experience
// Update or create a Experience
const experience = await prisma.experience.upsert({
create: {
// ... data to create a Experience
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Experience we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ExperienceWhereUniqueInput | Yes |
| create | ExperienceCreateInput | ExperienceUncheckedCreateInput | Yes |
| update | ExperienceUpdateInput | ExperienceUncheckedUpdateInput | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | AccountWhereInput | AccountWhereInput[] | No |
| OR | AccountWhereInput[] | No |
| NOT | AccountWhereInput | AccountWhereInput[] | No |
| access_token | StringNullableFilter | String | Null | Yes |
| expires_at | IntNullableFilter | Int | Null | Yes |
| id | StringFilter | String | No |
| id_token | StringNullableFilter | String | Null | Yes |
| provider | StringFilter | String | No |
| providerAccountId | StringFilter | String | No |
| oauth_token | StringNullableFilter | String | Null | Yes |
| oauth_token_secret | StringNullableFilter | String | Null | Yes |
| refresh_token | StringNullableFilter | String | Null | Yes |
| scope | StringNullableFilter | String | Null | Yes |
| session_state | StringNullableFilter | String | Null | Yes |
| token_type | StringNullableFilter | String | Null | Yes |
| type | StringFilter | String | No |
| user | UserRelationFilter | UserWhereInput | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | SortOrder | No |
| expires_at | SortOrder | No |
| id | SortOrder | No |
| id_token | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| oauth_token | SortOrder | No |
| oauth_token_secret | SortOrder | No |
| refresh_token | SortOrder | No |
| scope | SortOrder | No |
| session_state | SortOrder | No |
| token_type | SortOrder | No |
| type | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| provider_providerAccountId | AccountProviderProviderAccountIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | SortOrder | No |
| expires_at | SortOrder | No |
| id | SortOrder | No |
| id_token | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| oauth_token | SortOrder | No |
| oauth_token_secret | SortOrder | No |
| refresh_token | SortOrder | No |
| scope | SortOrder | No |
| session_state | SortOrder | No |
| token_type | SortOrder | No |
| type | SortOrder | No |
| userId | SortOrder | No |
| _count | AccountCountOrderByAggregateInput | No |
| _avg | AccountAvgOrderByAggregateInput | No |
| _max | AccountMaxOrderByAggregateInput | No |
| _min | AccountMinOrderByAggregateInput | No |
| _sum | AccountSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SessionWhereInput | SessionWhereInput[] | No |
| OR | SessionWhereInput[] | No |
| NOT | SessionWhereInput | SessionWhereInput[] | No |
| expires | DateTimeFilter | DateTime | No |
| id | StringFilter | String | No |
| sessionToken | StringFilter | String | No |
| user | UserRelationFilter | UserWhereInput | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| expires | SortOrder | No |
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| Name | Type | Nullable |
|---|---|---|
| expires | SortOrder | No |
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| userId | SortOrder | No |
| _count | SessionCountOrderByAggregateInput | No |
| _max | SessionMaxOrderByAggregateInput | No |
| _min | SessionMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SessionScalarWhereWithAggregatesInput | SessionScalarWhereWithAggregatesInput[] | No |
| OR | SessionScalarWhereWithAggregatesInput[] | No |
| NOT | SessionScalarWhereWithAggregatesInput | SessionScalarWhereWithAggregatesInput[] | No |
| expires | DateTimeWithAggregatesFilter | DateTime | No |
| id | StringWithAggregatesFilter | String | No |
| sessionToken | StringWithAggregatesFilter | String | No |
| userId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | VerificationTokenWhereInput | VerificationTokenWhereInput[] | No |
| OR | VerificationTokenWhereInput[] | No |
| NOT | VerificationTokenWhereInput | VerificationTokenWhereInput[] | No |
| expires | DateTimeFilter | DateTime | No |
| identifier | StringFilter | String | No |
| token | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| expires | SortOrder | No |
| identifier | SortOrder | No |
| token | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| token | String | No |
| identifier_token | VerificationTokenIdentifierTokenCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| expires | SortOrder | No |
| identifier | SortOrder | No |
| token | SortOrder | No |
| _count | VerificationTokenCountOrderByAggregateInput | No |
| _max | VerificationTokenMaxOrderByAggregateInput | No |
| _min | VerificationTokenMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | VerificationTokenScalarWhereWithAggregatesInput | VerificationTokenScalarWhereWithAggregatesInput[] | No |
| OR | VerificationTokenScalarWhereWithAggregatesInput[] | No |
| NOT | VerificationTokenScalarWhereWithAggregatesInput | VerificationTokenScalarWhereWithAggregatesInput[] | No |
| expires | DateTimeWithAggregatesFilter | DateTime | No |
| identifier | StringWithAggregatesFilter | String | No |
| token | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| String | No | |
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | SortOrder | No |
| description | SortOrder | No |
| SortOrder | No | |
| emailVerified | SortOrder | No |
| id | SortOrder | No |
| image | SortOrder | No |
| name | SortOrder | No |
| notificationsLastOpenedAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | UserCountOrderByAggregateInput | No |
| _max | UserMaxOrderByAggregateInput | No |
| _min | UserMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
| OR | UserScalarWhereWithAggregatesInput[] | No |
| NOT | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| description | StringNullableWithAggregatesFilter | String | Null | Yes |
| StringWithAggregatesFilter | String | No | |
| emailVerified | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| id | StringWithAggregatesFilter | String | No |
| image | StringNullableWithAggregatesFilter | String | Null | Yes |
| name | StringWithAggregatesFilter | String | No |
| notificationsLastOpenedAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserActivityWhereInput | UserActivityWhereInput[] | No |
| OR | UserActivityWhereInput[] | No |
| NOT | UserActivityWhereInput | UserActivityWhereInput[] | No |
| id | StringFilter | String | No |
| comment | CommentRelationFilter | CommentWhereInput | Null | Yes |
| commentId | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| follow | FollowRelationFilter | FollowWhereInput | Null | Yes |
| followId | StringNullableFilter | String | Null | Yes |
| friendship | FriendshipRelationFilter | FriendshipWhereInput | Null | Yes |
| friendshipId | StringNullableFilter | String | Null | Yes |
| post | PostRelationFilter | PostWhereInput | Null | Yes |
| postId | StringNullableFilter | String | Null | Yes |
| type | EnumUserActivityTypeFilter | UserActivityType | No |
| user | UserRelationFilter | UserWhereInput | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| comment | CommentOrderByWithRelationInput | No |
| commentId | SortOrder | No |
| createdAt | SortOrder | No |
| follow | FollowOrderByWithRelationInput | No |
| followId | SortOrder | No |
| friendship | FriendshipOrderByWithRelationInput | No |
| friendshipId | SortOrder | No |
| post | PostOrderByWithRelationInput | No |
| postId | SortOrder | No |
| type | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| commentId | SortOrder | No |
| createdAt | SortOrder | No |
| followId | SortOrder | No |
| friendshipId | SortOrder | No |
| postId | SortOrder | No |
| type | SortOrder | No |
| userId | SortOrder | No |
| _count | UserActivityCountOrderByAggregateInput | No |
| _max | UserActivityMaxOrderByAggregateInput | No |
| _min | UserActivityMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserActivityScalarWhereWithAggregatesInput | UserActivityScalarWhereWithAggregatesInput[] | No |
| OR | UserActivityScalarWhereWithAggregatesInput[] | No |
| NOT | UserActivityScalarWhereWithAggregatesInput | UserActivityScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| commentId | StringNullableWithAggregatesFilter | String | Null | Yes |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| followId | StringNullableWithAggregatesFilter | String | Null | Yes |
| friendshipId | StringNullableWithAggregatesFilter | String | Null | Yes |
| postId | StringNullableWithAggregatesFilter | String | Null | Yes |
| type | EnumUserActivityTypeWithAggregatesFilter | UserActivityType | No |
| userId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | NotificationWhereInput | NotificationWhereInput[] | No |
| OR | NotificationWhereInput[] | No |
| NOT | NotificationWhereInput | NotificationWhereInput[] | No |
| id | StringFilter | String | No |
| chat | ChatRelationFilter | ChatWhereInput | Null | Yes |
| chatId | StringNullableFilter | String | Null | Yes |
| friendship | FriendshipRelationFilter | FriendshipWhereInput | Null | Yes |
| friendshipId | StringNullableFilter | String | Null | Yes |
| opened | BoolFilter | Boolean | No |
| post | PostRelationFilter | PostWhereInput | Null | Yes |
| postId | StringNullableFilter | String | Null | Yes |
| type | EnumNotificationTypeFilter | NotificationType | No |
| updatedAt | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| chat | ChatOrderByWithRelationInput | No |
| chatId | SortOrder | No |
| friendship | FriendshipOrderByWithRelationInput | No |
| friendshipId | SortOrder | No |
| opened | SortOrder | No |
| post | PostOrderByWithRelationInput | No |
| postId | SortOrder | No |
| type | SortOrder | No |
| updatedAt | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| chatId | SortOrder | No |
| friendshipId | SortOrder | No |
| opened | SortOrder | No |
| postId | SortOrder | No |
| type | SortOrder | No |
| updatedAt | SortOrder | No |
| userId | SortOrder | No |
| _count | NotificationCountOrderByAggregateInput | No |
| _max | NotificationMaxOrderByAggregateInput | No |
| _min | NotificationMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | NotificationScalarWhereWithAggregatesInput | NotificationScalarWhereWithAggregatesInput[] | No |
| OR | NotificationScalarWhereWithAggregatesInput[] | No |
| NOT | NotificationScalarWhereWithAggregatesInput | NotificationScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| chatId | StringNullableWithAggregatesFilter | String | Null | Yes |
| friendshipId | StringNullableWithAggregatesFilter | String | Null | Yes |
| opened | BoolWithAggregatesFilter | Boolean | No |
| postId | StringNullableWithAggregatesFilter | String | Null | Yes |
| type | EnumNotificationTypeWithAggregatesFilter | NotificationType | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| userId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FriendshipWhereInput | FriendshipWhereInput[] | No |
| OR | FriendshipWhereInput[] | No |
| NOT | FriendshipWhereInput | FriendshipWhereInput[] | No |
| id | StringFilter | String | No |
| activities | UserActivityListRelationFilter | No |
| friender | UserRelationFilter | UserWhereInput | No |
| frienderId | StringFilter | String | No |
| friending | UserRelationFilter | UserWhereInput | No |
| friendingId | StringFilter | String | No |
| notifications | NotificationListRelationFilter | No |
| rejected | BoolFilter | Boolean | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| activities | UserActivityOrderByRelationAggregateInput | No |
| friender | UserOrderByWithRelationInput | No |
| frienderId | SortOrder | No |
| friending | UserOrderByWithRelationInput | No |
| friendingId | SortOrder | No |
| notifications | NotificationOrderByRelationAggregateInput | No |
| rejected | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| frienderId_friendingId | FriendshipFrienderIdFriendingIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| frienderId | SortOrder | No |
| friendingId | SortOrder | No |
| rejected | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | FriendshipCountOrderByAggregateInput | No |
| _max | FriendshipMaxOrderByAggregateInput | No |
| _min | FriendshipMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FriendshipScalarWhereWithAggregatesInput | FriendshipScalarWhereWithAggregatesInput[] | No |
| OR | FriendshipScalarWhereWithAggregatesInput[] | No |
| NOT | FriendshipScalarWhereWithAggregatesInput | FriendshipScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| frienderId | StringWithAggregatesFilter | String | No |
| friendingId | StringWithAggregatesFilter | String | No |
| rejected | BoolWithAggregatesFilter | Boolean | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FollowWhereInput | FollowWhereInput[] | No |
| OR | FollowWhereInput[] | No |
| NOT | FollowWhereInput | FollowWhereInput[] | No |
| id | StringFilter | String | No |
| activities | UserActivityListRelationFilter | No |
| createdAt | DateTimeFilter | DateTime | No |
| followingSkill | FollowSkillRelationFilter | FollowSkillWhereInput | Null | Yes |
| followingUser | FollowUserRelationFilter | FollowUserWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| activities | UserActivityOrderByRelationAggregateInput | No |
| createdAt | SortOrder | No |
| followingSkill | FollowSkillOrderByWithRelationInput | No |
| followingUser | FollowUserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| _count | FollowCountOrderByAggregateInput | No |
| _max | FollowMaxOrderByAggregateInput | No |
| _min | FollowMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FollowScalarWhereWithAggregatesInput | FollowScalarWhereWithAggregatesInput[] | No |
| OR | FollowScalarWhereWithAggregatesInput[] | No |
| NOT | FollowScalarWhereWithAggregatesInput | FollowScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FollowUserWhereInput | FollowUserWhereInput[] | No |
| OR | FollowUserWhereInput[] | No |
| NOT | FollowUserWhereInput | FollowUserWhereInput[] | No |
| id | StringFilter | String | No |
| follow | FollowRelationFilter | FollowWhereInput | No |
| followId | StringFilter | String | No |
| follower | UserRelationFilter | UserWhereInput | No |
| followerId | StringFilter | String | No |
| following | UserRelationFilter | UserWhereInput | No |
| followingId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| follow | FollowOrderByWithRelationInput | No |
| followId | SortOrder | No |
| follower | UserOrderByWithRelationInput | No |
| followerId | SortOrder | No |
| following | UserOrderByWithRelationInput | No |
| followingId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followId | String | No |
| followerId_followingId | FollowUserFollowerIdFollowingIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| followId | SortOrder | No |
| followerId | SortOrder | No |
| followingId | SortOrder | No |
| _count | FollowUserCountOrderByAggregateInput | No |
| _max | FollowUserMaxOrderByAggregateInput | No |
| _min | FollowUserMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FollowUserScalarWhereWithAggregatesInput | FollowUserScalarWhereWithAggregatesInput[] | No |
| OR | FollowUserScalarWhereWithAggregatesInput[] | No |
| NOT | FollowUserScalarWhereWithAggregatesInput | FollowUserScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| followId | StringWithAggregatesFilter | String | No |
| followerId | StringWithAggregatesFilter | String | No |
| followingId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FollowSkillWhereInput | FollowSkillWhereInput[] | No |
| OR | FollowSkillWhereInput[] | No |
| NOT | FollowSkillWhereInput | FollowSkillWhereInput[] | No |
| id | StringFilter | String | No |
| follow | FollowRelationFilter | FollowWhereInput | No |
| followId | StringFilter | String | No |
| follower | UserRelationFilter | UserWhereInput | No |
| followerId | StringFilter | String | No |
| following | SkillRelationFilter | SkillWhereInput | No |
| followingId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| follow | FollowOrderByWithRelationInput | No |
| followId | SortOrder | No |
| follower | UserOrderByWithRelationInput | No |
| followerId | SortOrder | No |
| following | SkillOrderByWithRelationInput | No |
| followingId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followId | String | No |
| followerId_followingId | FollowSkillFollowerIdFollowingIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| followId | SortOrder | No |
| followerId | SortOrder | No |
| followingId | SortOrder | No |
| _count | FollowSkillCountOrderByAggregateInput | No |
| _max | FollowSkillMaxOrderByAggregateInput | No |
| _min | FollowSkillMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FollowSkillScalarWhereWithAggregatesInput | FollowSkillScalarWhereWithAggregatesInput[] | No |
| OR | FollowSkillScalarWhereWithAggregatesInput[] | No |
| NOT | FollowSkillScalarWhereWithAggregatesInput | FollowSkillScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| followId | StringWithAggregatesFilter | String | No |
| followerId | StringWithAggregatesFilter | String | No |
| followingId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatWhereInput | ChatWhereInput[] | No |
| OR | ChatWhereInput[] | No |
| NOT | ChatWhereInput | ChatWhereInput[] | No |
| id | StringFilter | String | No |
| messages | ChatMessageListRelationFilter | No |
| notifications | NotificationListRelationFilter | No |
| users | ChatsOnUsersListRelationFilter | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| messages | ChatMessageOrderByRelationAggregateInput | No |
| notifications | NotificationOrderByRelationAggregateInput | No |
| users | ChatsOnUsersOrderByRelationAggregateInput | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | ChatCountOrderByAggregateInput | No |
| _max | ChatMaxOrderByAggregateInput | No |
| _min | ChatMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatScalarWhereWithAggregatesInput | ChatScalarWhereWithAggregatesInput[] | No |
| OR | ChatScalarWhereWithAggregatesInput[] | No |
| NOT | ChatScalarWhereWithAggregatesInput | ChatScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatMessageWhereInput | ChatMessageWhereInput[] | No |
| OR | ChatMessageWhereInput[] | No |
| NOT | ChatMessageWhereInput | ChatMessageWhereInput[] | No |
| id | StringFilter | String | No |
| chat | ChatRelationFilter | ChatWhereInput | No |
| chatId | StringFilter | String | No |
| content | JsonFilter | No |
| sender | UserRelationFilter | UserWhereInput | No |
| senderId | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| chat | ChatOrderByWithRelationInput | No |
| chatId | SortOrder | No |
| content | SortOrder | No |
| sender | UserOrderByWithRelationInput | No |
| senderId | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| chatId | SortOrder | No |
| content | SortOrder | No |
| senderId | SortOrder | No |
| createdAt | SortOrder | No |
| _count | ChatMessageCountOrderByAggregateInput | No |
| _max | ChatMessageMaxOrderByAggregateInput | No |
| _min | ChatMessageMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatMessageScalarWhereWithAggregatesInput | ChatMessageScalarWhereWithAggregatesInput[] | No |
| OR | ChatMessageScalarWhereWithAggregatesInput[] | No |
| NOT | ChatMessageScalarWhereWithAggregatesInput | ChatMessageScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| chatId | StringWithAggregatesFilter | String | No |
| content | JsonWithAggregatesFilter | No |
| senderId | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatsOnUsersWhereInput | ChatsOnUsersWhereInput[] | No |
| OR | ChatsOnUsersWhereInput[] | No |
| NOT | ChatsOnUsersWhereInput | ChatsOnUsersWhereInput[] | No |
| id | StringFilter | String | No |
| chat | ChatRelationFilter | ChatWhereInput | No |
| chatId | StringFilter | String | No |
| user | UserRelationFilter | UserWhereInput | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| chat | ChatOrderByWithRelationInput | No |
| chatId | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId_userId | ChatsOnUsersChatIdUserIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| chatId | SortOrder | No |
| userId | SortOrder | No |
| _count | ChatsOnUsersCountOrderByAggregateInput | No |
| _max | ChatsOnUsersMaxOrderByAggregateInput | No |
| _min | ChatsOnUsersMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatsOnUsersScalarWhereWithAggregatesInput | ChatsOnUsersScalarWhereWithAggregatesInput[] | No |
| OR | ChatsOnUsersScalarWhereWithAggregatesInput[] | No |
| NOT | ChatsOnUsersScalarWhereWithAggregatesInput | ChatsOnUsersScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| chatId | StringWithAggregatesFilter | String | No |
| userId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PostWhereInput | PostWhereInput[] | No |
| OR | PostWhereInput[] | No |
| NOT | PostWhereInput | PostWhereInput[] | No |
| activities | UserActivityListRelationFilter | No |
| author | UserRelationFilter | UserWhereInput | No |
| authorName | StringFilter | String | No |
| comments | CommentListRelationFilter | No |
| content | JsonNullableFilter | No |
| createdAt | DateTimeFilter | DateTime | No |
| description | StringNullableFilter | String | Null | Yes |
| id | StringFilter | String | No |
| images | PostImageListRelationFilter | No |
| notifications | NotificationListRelationFilter | No |
| publishedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| readTime | IntNullableFilter | Int | Null | Yes |
| skills | SkillsOnPostsListRelationFilter | No |
| title | StringNullableFilter | String | Null | Yes |
| thumbnailUrl | StringNullableFilter | String | Null | Yes |
| updatedAt | DateTimeFilter | DateTime | No |
| upvoters | PostUpvoterListRelationFilter | No |
| urlSlug | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| activities | UserActivityOrderByRelationAggregateInput | No |
| author | UserOrderByWithRelationInput | No |
| authorName | SortOrder | No |
| comments | CommentOrderByRelationAggregateInput | No |
| content | SortOrder | No |
| createdAt | SortOrder | No |
| description | SortOrder | No |
| id | SortOrder | No |
| images | PostImageOrderByRelationAggregateInput | No |
| notifications | NotificationOrderByRelationAggregateInput | No |
| publishedAt | SortOrder | No |
| readTime | SortOrder | No |
| skills | SkillsOnPostsOrderByRelationAggregateInput | No |
| title | SortOrder | No |
| thumbnailUrl | SortOrder | No |
| updatedAt | SortOrder | No |
| upvoters | PostUpvoterOrderByRelationAggregateInput | No |
| urlSlug | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorName_urlSlug | PostAuthorNameUrlSlugCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | SortOrder | No |
| content | SortOrder | No |
| createdAt | SortOrder | No |
| description | SortOrder | No |
| id | SortOrder | No |
| publishedAt | SortOrder | No |
| readTime | SortOrder | No |
| title | SortOrder | No |
| thumbnailUrl | SortOrder | No |
| updatedAt | SortOrder | No |
| urlSlug | SortOrder | No |
| _count | PostCountOrderByAggregateInput | No |
| _avg | PostAvgOrderByAggregateInput | No |
| _max | PostMaxOrderByAggregateInput | No |
| _min | PostMinOrderByAggregateInput | No |
| _sum | PostSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PostScalarWhereWithAggregatesInput | PostScalarWhereWithAggregatesInput[] | No |
| OR | PostScalarWhereWithAggregatesInput[] | No |
| NOT | PostScalarWhereWithAggregatesInput | PostScalarWhereWithAggregatesInput[] | No |
| authorName | StringWithAggregatesFilter | String | No |
| content | JsonNullableWithAggregatesFilter | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| description | StringNullableWithAggregatesFilter | String | Null | Yes |
| id | StringWithAggregatesFilter | String | No |
| publishedAt | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| readTime | IntNullableWithAggregatesFilter | Int | Null | Yes |
| title | StringNullableWithAggregatesFilter | String | Null | Yes |
| thumbnailUrl | StringNullableWithAggregatesFilter | String | Null | Yes |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| urlSlug | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PostUpvoterWhereInput | PostUpvoterWhereInput[] | No |
| OR | PostUpvoterWhereInput[] | No |
| NOT | PostUpvoterWhereInput | PostUpvoterWhereInput[] | No |
| id | StringFilter | String | No |
| post | PostRelationFilter | PostWhereInput | No |
| postId | StringFilter | String | No |
| upvote | BoolFilter | Boolean | No |
| user | UserRelationFilter | UserWhereInput | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| post | PostOrderByWithRelationInput | No |
| postId | SortOrder | No |
| upvote | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId_postId | PostUpvoterUserIdPostIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| postId | SortOrder | No |
| upvote | SortOrder | No |
| userId | SortOrder | No |
| _count | PostUpvoterCountOrderByAggregateInput | No |
| _max | PostUpvoterMaxOrderByAggregateInput | No |
| _min | PostUpvoterMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PostUpvoterScalarWhereWithAggregatesInput | PostUpvoterScalarWhereWithAggregatesInput[] | No |
| OR | PostUpvoterScalarWhereWithAggregatesInput[] | No |
| NOT | PostUpvoterScalarWhereWithAggregatesInput | PostUpvoterScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| postId | StringWithAggregatesFilter | String | No |
| upvote | BoolWithAggregatesFilter | Boolean | No |
| userId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PostImageWhereInput | PostImageWhereInput[] | No |
| OR | PostImageWhereInput[] | No |
| NOT | PostImageWhereInput | PostImageWhereInput[] | No |
| id | StringFilter | String | No |
| post | PostRelationFilter | PostWhereInput | No |
| postId | StringFilter | String | No |
| url | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| post | PostOrderByWithRelationInput | No |
| postId | SortOrder | No |
| url | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| url | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| postId | SortOrder | No |
| url | SortOrder | No |
| createdAt | SortOrder | No |
| _count | PostImageCountOrderByAggregateInput | No |
| _max | PostImageMaxOrderByAggregateInput | No |
| _min | PostImageMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PostImageScalarWhereWithAggregatesInput | PostImageScalarWhereWithAggregatesInput[] | No |
| OR | PostImageScalarWhereWithAggregatesInput[] | No |
| NOT | PostImageScalarWhereWithAggregatesInput | PostImageScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| postId | StringWithAggregatesFilter | String | No |
| url | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommentWhereInput | CommentWhereInput[] | No |
| OR | CommentWhereInput[] | No |
| NOT | CommentWhereInput | CommentWhereInput[] | No |
| id | StringFilter | String | No |
| activities | UserActivityListRelationFilter | No |
| author | UserRelationFilter | UserWhereInput | No |
| authorId | StringFilter | String | No |
| content | JsonNullableFilter | No |
| createdAt | DateTimeFilter | DateTime | No |
| parent | CommentRelationFilter | CommentWhereInput | Null | Yes |
| parentId | StringNullableFilter | String | Null | Yes |
| post | PostRelationFilter | PostWhereInput | Null | Yes |
| postId | StringNullableFilter | String | Null | Yes |
| replies | CommentListRelationFilter | No |
| updatedAt | DateTimeFilter | DateTime | No |
| upvoters | CommentUpvoterListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| activities | UserActivityOrderByRelationAggregateInput | No |
| author | UserOrderByWithRelationInput | No |
| authorId | SortOrder | No |
| content | SortOrder | No |
| createdAt | SortOrder | No |
| parent | CommentOrderByWithRelationInput | No |
| parentId | SortOrder | No |
| post | PostOrderByWithRelationInput | No |
| postId | SortOrder | No |
| replies | CommentOrderByRelationAggregateInput | No |
| updatedAt | SortOrder | No |
| upvoters | CommentUpvoterOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| authorId | SortOrder | No |
| content | SortOrder | No |
| createdAt | SortOrder | No |
| parentId | SortOrder | No |
| postId | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | CommentCountOrderByAggregateInput | No |
| _max | CommentMaxOrderByAggregateInput | No |
| _min | CommentMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommentScalarWhereWithAggregatesInput | CommentScalarWhereWithAggregatesInput[] | No |
| OR | CommentScalarWhereWithAggregatesInput[] | No |
| NOT | CommentScalarWhereWithAggregatesInput | CommentScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| authorId | StringWithAggregatesFilter | String | No |
| content | JsonNullableWithAggregatesFilter | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| parentId | StringNullableWithAggregatesFilter | String | Null | Yes |
| postId | StringNullableWithAggregatesFilter | String | Null | Yes |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommentUpvoterWhereInput | CommentUpvoterWhereInput[] | No |
| OR | CommentUpvoterWhereInput[] | No |
| NOT | CommentUpvoterWhereInput | CommentUpvoterWhereInput[] | No |
| id | StringFilter | String | No |
| comment | CommentRelationFilter | CommentWhereInput | No |
| commentId | StringFilter | String | No |
| upvote | BoolFilter | Boolean | No |
| user | UserRelationFilter | UserWhereInput | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| comment | CommentOrderByWithRelationInput | No |
| commentId | SortOrder | No |
| upvote | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId_userId | CommentUpvoterCommentIdUserIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| commentId | SortOrder | No |
| upvote | SortOrder | No |
| userId | SortOrder | No |
| _count | CommentUpvoterCountOrderByAggregateInput | No |
| _max | CommentUpvoterMaxOrderByAggregateInput | No |
| _min | CommentUpvoterMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommentUpvoterScalarWhereWithAggregatesInput | CommentUpvoterScalarWhereWithAggregatesInput[] | No |
| OR | CommentUpvoterScalarWhereWithAggregatesInput[] | No |
| NOT | CommentUpvoterScalarWhereWithAggregatesInput | CommentUpvoterScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| commentId | StringWithAggregatesFilter | String | No |
| upvote | BoolWithAggregatesFilter | Boolean | No |
| userId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SkillWhereInput | SkillWhereInput[] | No |
| OR | SkillWhereInput[] | No |
| NOT | SkillWhereInput | SkillWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| owner | StringFilter | String | No |
| users | SkillsOnUsersListRelationFilter | No |
| desiringUsers | DesiredSkillsOnUsersListRelationFilter | No |
| posts | SkillsOnPostsListRelationFilter | No |
| repositories | SkillsOnRepositoriesListRelationFilter | No |
| followedBy | FollowSkillListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| owner | SortOrder | No |
| users | SkillsOnUsersOrderByRelationAggregateInput | No |
| desiringUsers | DesiredSkillsOnUsersOrderByRelationAggregateInput | No |
| posts | SkillsOnPostsOrderByRelationAggregateInput | No |
| repositories | SkillsOnRepositoriesOrderByRelationAggregateInput | No |
| followedBy | FollowSkillOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name_owner | SkillNameOwnerCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| owner | SortOrder | No |
| _count | SkillCountOrderByAggregateInput | No |
| _max | SkillMaxOrderByAggregateInput | No |
| _min | SkillMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SkillScalarWhereWithAggregatesInput | SkillScalarWhereWithAggregatesInput[] | No |
| OR | SkillScalarWhereWithAggregatesInput[] | No |
| NOT | SkillScalarWhereWithAggregatesInput | SkillScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| owner | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SkillsOnPostsWhereInput | SkillsOnPostsWhereInput[] | No |
| OR | SkillsOnPostsWhereInput[] | No |
| NOT | SkillsOnPostsWhereInput | SkillsOnPostsWhereInput[] | No |
| id | StringFilter | String | No |
| post | PostRelationFilter | PostWhereInput | No |
| postId | StringFilter | String | No |
| skill | SkillRelationFilter | SkillWhereInput | No |
| skillId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| post | PostOrderByWithRelationInput | No |
| postId | SortOrder | No |
| skill | SkillOrderByWithRelationInput | No |
| skillId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId_postId | SkillsOnPostsSkillIdPostIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| postId | SortOrder | No |
| skillId | SortOrder | No |
| _count | SkillsOnPostsCountOrderByAggregateInput | No |
| _max | SkillsOnPostsMaxOrderByAggregateInput | No |
| _min | SkillsOnPostsMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SkillsOnPostsScalarWhereWithAggregatesInput | SkillsOnPostsScalarWhereWithAggregatesInput[] | No |
| OR | SkillsOnPostsScalarWhereWithAggregatesInput[] | No |
| NOT | SkillsOnPostsScalarWhereWithAggregatesInput | SkillsOnPostsScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| postId | StringWithAggregatesFilter | String | No |
| skillId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SkillsOnUsersWhereInput | SkillsOnUsersWhereInput[] | No |
| OR | SkillsOnUsersWhereInput[] | No |
| NOT | SkillsOnUsersWhereInput | SkillsOnUsersWhereInput[] | No |
| id | StringFilter | String | No |
| skill | SkillRelationFilter | SkillWhereInput | No |
| skillId | StringFilter | String | No |
| user | UserRelationFilter | UserWhereInput | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| skill | SkillOrderByWithRelationInput | No |
| skillId | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId_userId | SkillsOnUsersSkillIdUserIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| skillId | SortOrder | No |
| userId | SortOrder | No |
| _count | SkillsOnUsersCountOrderByAggregateInput | No |
| _max | SkillsOnUsersMaxOrderByAggregateInput | No |
| _min | SkillsOnUsersMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SkillsOnUsersScalarWhereWithAggregatesInput | SkillsOnUsersScalarWhereWithAggregatesInput[] | No |
| OR | SkillsOnUsersScalarWhereWithAggregatesInput[] | No |
| NOT | SkillsOnUsersScalarWhereWithAggregatesInput | SkillsOnUsersScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| skillId | StringWithAggregatesFilter | String | No |
| userId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | DesiredSkillsOnUsersWhereInput | DesiredSkillsOnUsersWhereInput[] | No |
| OR | DesiredSkillsOnUsersWhereInput[] | No |
| NOT | DesiredSkillsOnUsersWhereInput | DesiredSkillsOnUsersWhereInput[] | No |
| id | StringFilter | String | No |
| skill | SkillRelationFilter | SkillWhereInput | No |
| skillId | StringFilter | String | No |
| user | UserRelationFilter | UserWhereInput | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| skill | SkillOrderByWithRelationInput | No |
| skillId | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId_userId | DesiredSkillsOnUsersSkillIdUserIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| skillId | SortOrder | No |
| userId | SortOrder | No |
| _count | DesiredSkillsOnUsersCountOrderByAggregateInput | No |
| _max | DesiredSkillsOnUsersMaxOrderByAggregateInput | No |
| _min | DesiredSkillsOnUsersMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | DesiredSkillsOnUsersScalarWhereWithAggregatesInput | DesiredSkillsOnUsersScalarWhereWithAggregatesInput[] | No |
| OR | DesiredSkillsOnUsersScalarWhereWithAggregatesInput[] | No |
| NOT | DesiredSkillsOnUsersScalarWhereWithAggregatesInput | DesiredSkillsOnUsersScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| skillId | StringWithAggregatesFilter | String | No |
| userId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RepositoryWhereInput | RepositoryWhereInput[] | No |
| OR | RepositoryWhereInput[] | No |
| NOT | RepositoryWhereInput | RepositoryWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| skills | SkillsOnRepositoriesListRelationFilter | No |
| user | UserRelationFilter | UserWhereInput | No |
| owner | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| skills | SkillsOnRepositoriesOrderByRelationAggregateInput | No |
| user | UserOrderByWithRelationInput | No |
| owner | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name_owner | RepositoryNameOwnerCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| owner | SortOrder | No |
| _count | RepositoryCountOrderByAggregateInput | No |
| _max | RepositoryMaxOrderByAggregateInput | No |
| _min | RepositoryMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RepositoryScalarWhereWithAggregatesInput | RepositoryScalarWhereWithAggregatesInput[] | No |
| OR | RepositoryScalarWhereWithAggregatesInput[] | No |
| NOT | RepositoryScalarWhereWithAggregatesInput | RepositoryScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| owner | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SkillsOnRepositoriesWhereInput | SkillsOnRepositoriesWhereInput[] | No |
| OR | SkillsOnRepositoriesWhereInput[] | No |
| NOT | SkillsOnRepositoriesWhereInput | SkillsOnRepositoriesWhereInput[] | No |
| id | StringFilter | String | No |
| skill | SkillRelationFilter | SkillWhereInput | No |
| skillId | StringFilter | String | No |
| repository | RepositoryRelationFilter | RepositoryWhereInput | No |
| repositoryId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| skill | SkillOrderByWithRelationInput | No |
| skillId | SortOrder | No |
| repository | RepositoryOrderByWithRelationInput | No |
| repositoryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId_repositoryId | SkillsOnRepositoriesSkillIdRepositoryIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| skillId | SortOrder | No |
| repositoryId | SortOrder | No |
| _count | SkillsOnRepositoriesCountOrderByAggregateInput | No |
| _max | SkillsOnRepositoriesMaxOrderByAggregateInput | No |
| _min | SkillsOnRepositoriesMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SkillsOnRepositoriesScalarWhereWithAggregatesInput | SkillsOnRepositoriesScalarWhereWithAggregatesInput[] | No |
| OR | SkillsOnRepositoriesScalarWhereWithAggregatesInput[] | No |
| NOT | SkillsOnRepositoriesScalarWhereWithAggregatesInput | SkillsOnRepositoriesScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| skillId | StringWithAggregatesFilter | String | No |
| repositoryId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrganizationWhereInput | OrganizationWhereInput[] | No |
| OR | OrganizationWhereInput[] | No |
| NOT | OrganizationWhereInput | OrganizationWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| experiences | ExperienceListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| experiences | ExperienceOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| _count | OrganizationCountOrderByAggregateInput | No |
| _max | OrganizationMaxOrderByAggregateInput | No |
| _min | OrganizationMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrganizationScalarWhereWithAggregatesInput | OrganizationScalarWhereWithAggregatesInput[] | No |
| OR | OrganizationScalarWhereWithAggregatesInput[] | No |
| NOT | OrganizationScalarWhereWithAggregatesInput | OrganizationScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ExperienceWhereInput | ExperienceWhereInput[] | No |
| OR | ExperienceWhereInput[] | No |
| NOT | ExperienceWhereInput | ExperienceWhereInput[] | No |
| id | StringFilter | String | No |
| endDate | DateTimeNullableFilter | DateTime | Null | Yes |
| highlights | StringNullableListFilter | No |
| location | StringNullableFilter | String | Null | Yes |
| organization | OrganizationRelationFilter | OrganizationWhereInput | No |
| organizationName | StringFilter | String | No |
| positionName | StringFilter | String | No |
| startDate | DateTimeFilter | DateTime | No |
| type | EnumExperienceTypeNullableFilter | ExperienceType | Null | Yes |
| user | UserRelationFilter | UserWhereInput | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| endDate | SortOrder | No |
| highlights | SortOrder | No |
| location | SortOrder | No |
| organization | OrganizationOrderByWithRelationInput | No |
| organizationName | SortOrder | No |
| positionName | SortOrder | No |
| startDate | SortOrder | No |
| type | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| endDate | SortOrder | No |
| highlights | SortOrder | No |
| location | SortOrder | No |
| organizationName | SortOrder | No |
| positionName | SortOrder | No |
| startDate | SortOrder | No |
| type | SortOrder | No |
| userId | SortOrder | No |
| _count | ExperienceCountOrderByAggregateInput | No |
| _max | ExperienceMaxOrderByAggregateInput | No |
| _min | ExperienceMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ExperienceScalarWhereWithAggregatesInput | ExperienceScalarWhereWithAggregatesInput[] | No |
| OR | ExperienceScalarWhereWithAggregatesInput[] | No |
| NOT | ExperienceScalarWhereWithAggregatesInput | ExperienceScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| endDate | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| highlights | StringNullableListFilter | No |
| location | StringNullableWithAggregatesFilter | String | Null | Yes |
| organizationName | StringWithAggregatesFilter | String | No |
| positionName | StringWithAggregatesFilter | String | No |
| startDate | DateTimeWithAggregatesFilter | DateTime | No |
| type | EnumExperienceTypeNullableWithAggregatesFilter | ExperienceType | Null | Yes |
| userId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | String | Null | Yes |
| expires_at | Int | Null | Yes |
| id | String | No |
| id_token | String | Null | Yes |
| provider | String | No |
| providerAccountId | String | No |
| oauth_token | String | Null | Yes |
| oauth_token_secret | String | Null | Yes |
| refresh_token | String | Null | Yes |
| scope | String | Null | Yes |
| session_state | String | Null | Yes |
| token_type | String | Null | Yes |
| type | String | No |
| user | UserCreateNestedOneWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | String | Null | Yes |
| expires_at | Int | Null | Yes |
| id | String | No |
| id_token | String | Null | Yes |
| provider | String | No |
| providerAccountId | String | No |
| oauth_token | String | Null | Yes |
| oauth_token_secret | String | Null | Yes |
| refresh_token | String | Null | Yes |
| scope | String | Null | Yes |
| session_state | String | Null | Yes |
| token_type | String | Null | Yes |
| type | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| oauth_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| oauth_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | String | Null | Yes |
| expires_at | Int | Null | Yes |
| id | String | No |
| id_token | String | Null | Yes |
| provider | String | No |
| providerAccountId | String | No |
| oauth_token | String | Null | Yes |
| oauth_token_secret | String | Null | Yes |
| refresh_token | String | Null | Yes |
| scope | String | Null | Yes |
| session_state | String | Null | Yes |
| token_type | String | Null | Yes |
| type | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| oauth_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| oauth_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | No |
| id | String | No |
| sessionToken | String | No |
| user | UserCreateNestedOneWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | No |
| id | String | No |
| sessionToken | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | No |
| id | String | No |
| sessionToken | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | No |
| identifier | String | No |
| token | String | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | No |
| identifier | String | No |
| token | String | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| identifier | String | StringFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| identifier | String | StringFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | No |
| identifier | String | No |
| token | String | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| identifier | String | StringFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| identifier | String | StringFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| description | String | Null | Yes |
| String | No | |
| emailVerified | DateTime | Null | Yes |
| id | String | No |
| image | String | Null | Yes |
| name | String | No |
| notificationsLastOpenedAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| emailVerified | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| notificationsLastOpenedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| emailVerified | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| notificationsLastOpenedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| type | UserActivityType | No |
| comment | CommentCreateNestedOneWithoutActivitiesInput | No |
| follow | FollowCreateNestedOneWithoutActivitiesInput | No |
| friendship | FriendshipCreateNestedOneWithoutActivitiesInput | No |
| post | PostCreateNestedOneWithoutActivitiesInput | No |
| user | UserCreateNestedOneWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId | String | Null | Yes |
| createdAt | DateTime | No |
| followId | String | Null | Yes |
| friendshipId | String | Null | Yes |
| postId | String | Null | Yes |
| type | UserActivityType | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| type | UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput | No |
| comment | CommentUpdateOneWithoutActivitiesInput | No |
| follow | FollowUpdateOneWithoutActivitiesInput | No |
| friendship | FriendshipUpdateOneWithoutActivitiesInput | No |
| post | PostUpdateOneWithoutActivitiesInput | No |
| user | UserUpdateOneRequiredWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| followId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| friendshipId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId | String | Null | Yes |
| createdAt | DateTime | No |
| followId | String | Null | Yes |
| friendshipId | String | Null | Yes |
| postId | String | Null | Yes |
| type | UserActivityType | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| type | UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| followId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| friendshipId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| opened | Boolean | No |
| type | NotificationType | No |
| updatedAt | DateTime | No |
| chat | ChatCreateNestedOneWithoutNotificationsInput | No |
| friendship | FriendshipCreateNestedOneWithoutNotificationsInput | No |
| post | PostCreateNestedOneWithoutNotificationsInput | No |
| user | UserCreateNestedOneWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | Null | Yes |
| friendshipId | String | Null | Yes |
| opened | Boolean | No |
| postId | String | Null | Yes |
| type | NotificationType | No |
| updatedAt | DateTime | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| opened | Boolean | BoolFieldUpdateOperationsInput | No |
| type | NotificationType | EnumNotificationTypeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| chat | ChatUpdateOneWithoutNotificationsInput | No |
| friendship | FriendshipUpdateOneWithoutNotificationsInput | No |
| post | PostUpdateOneWithoutNotificationsInput | No |
| user | UserUpdateOneRequiredWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| chatId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| friendshipId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| opened | Boolean | BoolFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | NotificationType | EnumNotificationTypeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | Null | Yes |
| friendshipId | String | Null | Yes |
| opened | Boolean | No |
| postId | String | Null | Yes |
| type | NotificationType | No |
| updatedAt | DateTime | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| opened | Boolean | BoolFieldUpdateOperationsInput | No |
| type | NotificationType | EnumNotificationTypeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| chatId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| friendshipId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| opened | Boolean | BoolFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | NotificationType | EnumNotificationTypeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| rejected | Boolean | No |
| updatedAt | DateTime | No |
| activities | UserActivityCreateNestedManyWithoutFriendshipInput | No |
| friender | UserCreateNestedOneWithoutFriendingInput | No |
| friending | UserCreateNestedOneWithoutFriendedByInput | No |
| notifications | NotificationCreateNestedManyWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| frienderId | String | No |
| friendingId | String | No |
| rejected | Boolean | No |
| updatedAt | DateTime | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutFriendshipInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| rejected | Boolean | BoolFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutFriendshipInput | No |
| friender | UserUpdateOneRequiredWithoutFriendingInput | No |
| friending | UserUpdateOneRequiredWithoutFriendedByInput | No |
| notifications | NotificationUpdateManyWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| frienderId | String | StringFieldUpdateOperationsInput | No |
| friendingId | String | StringFieldUpdateOperationsInput | No |
| rejected | Boolean | BoolFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutFriendshipInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| frienderId | String | No |
| friendingId | String | No |
| rejected | Boolean | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| rejected | Boolean | BoolFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| frienderId | String | StringFieldUpdateOperationsInput | No |
| friendingId | String | StringFieldUpdateOperationsInput | No |
| rejected | Boolean | BoolFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| activities | UserActivityCreateNestedManyWithoutFollowInput | No |
| followingSkill | FollowSkillCreateNestedOneWithoutFollowInput | No |
| followingUser | FollowUserCreateNestedOneWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutFollowInput | No |
| followingSkill | FollowSkillUncheckedCreateNestedOneWithoutFollowInput | No |
| followingUser | FollowUserUncheckedCreateNestedOneWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutFollowInput | No |
| followingSkill | FollowSkillUpdateOneWithoutFollowInput | No |
| followingUser | FollowUserUpdateOneWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutFollowInput | No |
| followingSkill | FollowSkillUncheckedUpdateOneWithoutFollowInput | No |
| followingUser | FollowUserUncheckedUpdateOneWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| follow | FollowCreateNestedOneWithoutFollowingUserInput | No |
| follower | UserCreateNestedOneWithoutFollowingUserInput | No |
| following | UserCreateNestedOneWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followId | String | No |
| followerId | String | No |
| followingId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| follow | FollowUpdateOneRequiredWithoutFollowingUserInput | No |
| follower | UserUpdateOneRequiredWithoutFollowingUserInput | No |
| following | UserUpdateOneRequiredWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followId | String | StringFieldUpdateOperationsInput | No |
| followerId | String | StringFieldUpdateOperationsInput | No |
| followingId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followId | String | No |
| followerId | String | No |
| followingId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followId | String | StringFieldUpdateOperationsInput | No |
| followerId | String | StringFieldUpdateOperationsInput | No |
| followingId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| follow | FollowCreateNestedOneWithoutFollowingSkillInput | No |
| follower | UserCreateNestedOneWithoutFollowingSkillInput | No |
| following | SkillCreateNestedOneWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followId | String | No |
| followerId | String | No |
| followingId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| follow | FollowUpdateOneRequiredWithoutFollowingSkillInput | No |
| follower | UserUpdateOneRequiredWithoutFollowingSkillInput | No |
| following | SkillUpdateOneRequiredWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followId | String | StringFieldUpdateOperationsInput | No |
| followerId | String | StringFieldUpdateOperationsInput | No |
| followingId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followId | String | No |
| followerId | String | No |
| followingId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followId | String | StringFieldUpdateOperationsInput | No |
| followerId | String | StringFieldUpdateOperationsInput | No |
| followingId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| updatedAt | DateTime | No |
| messages | ChatMessageCreateNestedManyWithoutChatInput | No |
| notifications | NotificationCreateNestedManyWithoutChatInput | No |
| users | ChatsOnUsersCreateNestedManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| updatedAt | DateTime | No |
| messages | ChatMessageUncheckedCreateNestedManyWithoutChatInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutChatInput | No |
| users | ChatsOnUsersUncheckedCreateNestedManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| messages | ChatMessageUpdateManyWithoutChatInput | No |
| notifications | NotificationUpdateManyWithoutChatInput | No |
| users | ChatsOnUsersUpdateManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| messages | ChatMessageUncheckedUpdateManyWithoutChatInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutChatInput | No |
| users | ChatsOnUsersUncheckedUpdateManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| content | JsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| chat | ChatCreateNestedOneWithoutMessagesInput | No |
| sender | UserCreateNestedOneWithoutChatMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | No |
| content | JsonNullValueInput | Json | No |
| senderId | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| content | JsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| chat | ChatUpdateOneRequiredWithoutMessagesInput | No |
| sender | UserUpdateOneRequiredWithoutChatMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| chatId | String | StringFieldUpdateOperationsInput | No |
| content | JsonNullValueInput | Json | No |
| senderId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | No |
| content | JsonNullValueInput | Json | No |
| senderId | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| content | JsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| chatId | String | StringFieldUpdateOperationsInput | No |
| content | JsonNullValueInput | Json | No |
| senderId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chat | ChatCreateNestedOneWithoutUsersInput | No |
| user | UserCreateNestedOneWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| chat | ChatUpdateOneRequiredWithoutUsersInput | No |
| user | UserUpdateOneRequiredWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| chatId | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| chatId | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| description | String | Null | Yes |
| id | String | No |
| publishedAt | DateTime | Null | Yes |
| readTime | Int | Null | Yes |
| title | String | Null | Yes |
| thumbnailUrl | String | Null | Yes |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| activities | UserActivityCreateNestedManyWithoutPostInput | No |
| author | UserCreateNestedOneWithoutPostsInput | No |
| comments | CommentCreateNestedManyWithoutPostInput | No |
| images | PostImageCreateNestedManyWithoutPostInput | No |
| notifications | NotificationCreateNestedManyWithoutPostInput | No |
| skills | SkillsOnPostsCreateNestedManyWithoutPostInput | No |
| upvoters | PostUpvoterCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| description | String | Null | Yes |
| id | String | No |
| publishedAt | DateTime | Null | Yes |
| readTime | Int | Null | Yes |
| title | String | Null | Yes |
| thumbnailUrl | String | Null | Yes |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutPostInput | No |
| comments | CommentUncheckedCreateNestedManyWithoutPostInput | No |
| images | PostImageUncheckedCreateNestedManyWithoutPostInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutPostInput | No |
| skills | SkillsOnPostsUncheckedCreateNestedManyWithoutPostInput | No |
| upvoters | PostUpvoterUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| publishedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| readTime | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| thumbnailUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| urlSlug | String | StringFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutPostInput | No |
| author | UserUpdateOneRequiredWithoutPostsInput | No |
| comments | CommentUpdateManyWithoutPostInput | No |
| images | PostImageUpdateManyWithoutPostInput | No |
| notifications | NotificationUpdateManyWithoutPostInput | No |
| skills | SkillsOnPostsUpdateManyWithoutPostInput | No |
| upvoters | PostUpvoterUpdateManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| description | String | Null | Yes |
| id | String | No |
| publishedAt | DateTime | Null | Yes |
| readTime | Int | Null | Yes |
| title | String | Null | Yes |
| thumbnailUrl | String | Null | Yes |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| publishedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| readTime | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| thumbnailUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| urlSlug | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| publishedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| readTime | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| thumbnailUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| urlSlug | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| upvote | Boolean | No |
| post | PostCreateNestedOneWithoutUpvotersInput | No |
| user | UserCreateNestedOneWithoutUpvotedPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| upvote | Boolean | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| post | PostUpdateOneRequiredWithoutUpvotersInput | No |
| user | UserUpdateOneRequiredWithoutUpvotedPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| postId | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| upvote | Boolean | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| postId | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| url | String | No |
| createdAt | DateTime | No |
| post | PostCreateNestedOneWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| url | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| post | PostUpdateOneRequiredWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| postId | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| url | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| postId | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| activities | UserActivityCreateNestedManyWithoutCommentInput | No |
| author | UserCreateNestedOneWithoutCommentsInput | No |
| parent | CommentCreateNestedOneWithoutRepliesInput | No |
| post | PostCreateNestedOneWithoutCommentsInput | No |
| replies | CommentCreateNestedManyWithoutParentInput | No |
| upvoters | CommentUpvoterCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| parentId | String | Null | Yes |
| postId | String | Null | Yes |
| updatedAt | DateTime | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutCommentInput | No |
| replies | CommentUncheckedCreateNestedManyWithoutParentInput | No |
| upvoters | CommentUpvoterUncheckedCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutCommentInput | No |
| author | UserUpdateOneRequiredWithoutCommentsInput | No |
| parent | CommentUpdateOneWithoutRepliesInput | No |
| post | PostUpdateOneWithoutCommentsInput | No |
| replies | CommentUpdateManyWithoutParentInput | No |
| upvoters | CommentUpvoterUpdateManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| parentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutCommentInput | No |
| replies | CommentUncheckedUpdateManyWithoutParentInput | No |
| upvoters | CommentUpvoterUncheckedUpdateManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| parentId | String | Null | Yes |
| postId | String | Null | Yes |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| parentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| upvote | Boolean | No |
| comment | CommentCreateNestedOneWithoutUpvotersInput | No |
| user | UserCreateNestedOneWithoutUpvotedCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId | String | No |
| upvote | Boolean | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| comment | CommentUpdateOneRequiredWithoutUpvotersInput | No |
| user | UserUpdateOneRequiredWithoutUpvotedCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| commentId | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId | String | No |
| upvote | Boolean | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| commentId | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| users | SkillsOnUsersCreateNestedManyWithoutSkillInput | No |
| desiringUsers | DesiredSkillsOnUsersCreateNestedManyWithoutSkillInput | No |
| posts | SkillsOnPostsCreateNestedManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesCreateNestedManyWithoutSkillInput | No |
| followedBy | FollowSkillCreateNestedManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| users | SkillsOnUsersUncheckedCreateNestedManyWithoutSkillInput | No |
| desiringUsers | DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutSkillInput | No |
| posts | SkillsOnPostsUncheckedCreateNestedManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesUncheckedCreateNestedManyWithoutSkillInput | No |
| followedBy | FollowSkillUncheckedCreateNestedManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| owner | String | StringFieldUpdateOperationsInput | No |
| users | SkillsOnUsersUpdateManyWithoutSkillInput | No |
| desiringUsers | DesiredSkillsOnUsersUpdateManyWithoutSkillInput | No |
| posts | SkillsOnPostsUpdateManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesUpdateManyWithoutSkillInput | No |
| followedBy | FollowSkillUpdateManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| owner | String | StringFieldUpdateOperationsInput | No |
| users | SkillsOnUsersUncheckedUpdateManyWithoutSkillInput | No |
| desiringUsers | DesiredSkillsOnUsersUncheckedUpdateManyWithoutSkillInput | No |
| posts | SkillsOnPostsUncheckedUpdateManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesUncheckedUpdateManyWithoutSkillInput | No |
| followedBy | FollowSkillUncheckedUpdateManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| owner | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| owner | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| post | PostCreateNestedOneWithoutSkillsInput | No |
| skill | SkillCreateNestedOneWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| skillId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| post | PostUpdateOneRequiredWithoutSkillsInput | No |
| skill | SkillUpdateOneRequiredWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| postId | String | StringFieldUpdateOperationsInput | No |
| skillId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| skillId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| postId | String | StringFieldUpdateOperationsInput | No |
| skillId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skill | SkillCreateNestedOneWithoutUsersInput | No |
| user | UserCreateNestedOneWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skill | SkillUpdateOneRequiredWithoutUsersInput | No |
| user | UserUpdateOneRequiredWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skillId | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skillId | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skill | SkillCreateNestedOneWithoutDesiringUsersInput | No |
| user | UserCreateNestedOneWithoutDesiredSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skill | SkillUpdateOneRequiredWithoutDesiringUsersInput | No |
| user | UserUpdateOneRequiredWithoutDesiredSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skillId | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skillId | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| skills | SkillsOnRepositoriesCreateNestedManyWithoutRepositoryInput | No |
| user | UserCreateNestedOneWithoutRepositoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| skills | SkillsOnRepositoriesUncheckedCreateNestedManyWithoutRepositoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| skills | SkillsOnRepositoriesUpdateManyWithoutRepositoryInput | No |
| user | UserUpdateOneRequiredWithoutRepositoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| owner | String | StringFieldUpdateOperationsInput | No |
| skills | SkillsOnRepositoriesUncheckedUpdateManyWithoutRepositoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| owner | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skill | SkillCreateNestedOneWithoutRepositoriesInput | No |
| repository | RepositoryCreateNestedOneWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| repositoryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skill | SkillUpdateOneRequiredWithoutRepositoriesInput | No |
| repository | RepositoryUpdateOneRequiredWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skillId | String | StringFieldUpdateOperationsInput | No |
| repositoryId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| repositoryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skillId | String | StringFieldUpdateOperationsInput | No |
| repositoryId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| experiences | ExperienceCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| experiences | ExperienceUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| experiences | ExperienceUpdateManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| experiences | ExperienceUncheckedUpdateManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| endDate | DateTime | Null | Yes |
| location | String | Null | Yes |
| positionName | String | No |
| startDate | DateTime | No |
| type | ExperienceType | Null | Yes |
| highlights | ExperienceCreatehighlightsInput | String | No |
| organization | OrganizationCreateNestedOneWithoutExperiencesInput | No |
| user | UserCreateNestedOneWithoutExperiencesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| endDate | DateTime | Null | Yes |
| location | String | Null | Yes |
| organizationName | String | No |
| positionName | String | No |
| startDate | DateTime | No |
| type | ExperienceType | Null | Yes |
| userId | String | No |
| highlights | ExperienceCreatehighlightsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| location | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| positionName | String | StringFieldUpdateOperationsInput | No |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| type | ExperienceType | NullableEnumExperienceTypeFieldUpdateOperationsInput | Null | Yes |
| highlights | ExperienceUpdatehighlightsInput | String | No |
| organization | OrganizationUpdateOneRequiredWithoutExperiencesInput | No |
| user | UserUpdateOneRequiredWithoutExperiencesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| location | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| organizationName | String | StringFieldUpdateOperationsInput | No |
| positionName | String | StringFieldUpdateOperationsInput | No |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| type | ExperienceType | NullableEnumExperienceTypeFieldUpdateOperationsInput | Null | Yes |
| userId | String | StringFieldUpdateOperationsInput | No |
| highlights | ExperienceUpdatehighlightsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| endDate | DateTime | Null | Yes |
| location | String | Null | Yes |
| organizationName | String | No |
| positionName | String | No |
| startDate | DateTime | No |
| type | ExperienceType | Null | Yes |
| userId | String | No |
| highlights | ExperienceCreateManyhighlightsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| location | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| positionName | String | StringFieldUpdateOperationsInput | No |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| type | ExperienceType | NullableEnumExperienceTypeFieldUpdateOperationsInput | Null | Yes |
| highlights | ExperienceUpdatehighlightsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| location | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| organizationName | String | StringFieldUpdateOperationsInput | No |
| positionName | String | StringFieldUpdateOperationsInput | No |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| type | ExperienceType | NullableEnumExperienceTypeFieldUpdateOperationsInput | Null | Yes |
| userId | String | StringFieldUpdateOperationsInput | No |
| highlights | ExperienceUpdatehighlightsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | No |
| notIn | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | UserWhereInput | No |
| isNot | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| provider | String | No |
| providerAccountId | String | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | SortOrder | No |
| expires_at | SortOrder | No |
| id | SortOrder | No |
| id_token | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| oauth_token | SortOrder | No |
| oauth_token_secret | SortOrder | No |
| refresh_token | SortOrder | No |
| scope | SortOrder | No |
| session_state | SortOrder | No |
| token_type | SortOrder | No |
| type | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| expires_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | SortOrder | No |
| expires_at | SortOrder | No |
| id | SortOrder | No |
| id_token | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| oauth_token | SortOrder | No |
| oauth_token_secret | SortOrder | No |
| refresh_token | SortOrder | No |
| scope | SortOrder | No |
| session_state | SortOrder | No |
| token_type | SortOrder | No |
| type | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | SortOrder | No |
| expires_at | SortOrder | No |
| id | SortOrder | No |
| id_token | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| oauth_token | SortOrder | No |
| oauth_token_secret | SortOrder | No |
| refresh_token | SortOrder | No |
| scope | SortOrder | No |
| session_state | SortOrder | No |
| token_type | SortOrder | No |
| type | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| expires_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | No |
| notIn | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| expires | SortOrder | No |
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| expires | SortOrder | No |
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| expires | SortOrder | No |
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| Name | Type | Nullable |
|---|---|---|
| expires | SortOrder | No |
| identifier | SortOrder | No |
| token | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| expires | SortOrder | No |
| identifier | SortOrder | No |
| token | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| expires | SortOrder | No |
| identifier | SortOrder | No |
| token | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | AccountWhereInput | No |
| some | AccountWhereInput | No |
| none | AccountWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | UserActivityWhereInput | No |
| some | UserActivityWhereInput | No |
| none | UserActivityWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ChatsOnUsersWhereInput | No |
| some | ChatsOnUsersWhereInput | No |
| none | ChatsOnUsersWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ChatMessageWhereInput | No |
| some | ChatMessageWhereInput | No |
| none | ChatMessageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | CommentWhereInput | No |
| some | CommentWhereInput | No |
| none | CommentWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | DesiredSkillsOnUsersWhereInput | No |
| some | DesiredSkillsOnUsersWhereInput | No |
| none | DesiredSkillsOnUsersWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | Null | Yes |
| notIn | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | ExperienceWhereInput | No |
| some | ExperienceWhereInput | No |
| none | ExperienceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | FollowUserWhereInput | No |
| some | FollowUserWhereInput | No |
| none | FollowUserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | FollowSkillWhereInput | No |
| some | FollowSkillWhereInput | No |
| none | FollowSkillWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | FriendshipWhereInput | No |
| some | FriendshipWhereInput | No |
| none | FriendshipWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | NotificationWhereInput | No |
| some | NotificationWhereInput | No |
| none | NotificationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | PostWhereInput | No |
| some | PostWhereInput | No |
| none | PostWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | RepositoryWhereInput | No |
| some | RepositoryWhereInput | No |
| none | RepositoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | SessionWhereInput | No |
| some | SessionWhereInput | No |
| none | SessionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | SkillsOnUsersWhereInput | No |
| some | SkillsOnUsersWhereInput | No |
| none | SkillsOnUsersWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | CommentUpvoterWhereInput | No |
| some | CommentUpvoterWhereInput | No |
| none | CommentUpvoterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | PostUpvoterWhereInput | No |
| some | PostUpvoterWhereInput | No |
| none | PostUpvoterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | SortOrder | No |
| description | SortOrder | No |
| SortOrder | No | |
| emailVerified | SortOrder | No |
| id | SortOrder | No |
| image | SortOrder | No |
| name | SortOrder | No |
| notificationsLastOpenedAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | SortOrder | No |
| description | SortOrder | No |
| SortOrder | No | |
| emailVerified | SortOrder | No |
| id | SortOrder | No |
| image | SortOrder | No |
| name | SortOrder | No |
| notificationsLastOpenedAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | SortOrder | No |
| description | SortOrder | No |
| SortOrder | No | |
| emailVerified | SortOrder | No |
| id | SortOrder | No |
| image | SortOrder | No |
| name | SortOrder | No |
| notificationsLastOpenedAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | Null | Yes |
| notIn | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | CommentWhereInput | Null | Yes |
| isNot | CommentWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | FollowWhereInput | No |
| isNot | FollowWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | FriendshipWhereInput | Null | Yes |
| isNot | FriendshipWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | PostWhereInput | No |
| isNot | PostWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | UserActivityType | No |
| in | UserActivityType[] | No |
| notIn | UserActivityType[] | No |
| not | UserActivityType | NestedEnumUserActivityTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| commentId | SortOrder | No |
| createdAt | SortOrder | No |
| followId | SortOrder | No |
| friendshipId | SortOrder | No |
| postId | SortOrder | No |
| type | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| commentId | SortOrder | No |
| createdAt | SortOrder | No |
| followId | SortOrder | No |
| friendshipId | SortOrder | No |
| postId | SortOrder | No |
| type | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| commentId | SortOrder | No |
| createdAt | SortOrder | No |
| followId | SortOrder | No |
| friendshipId | SortOrder | No |
| postId | SortOrder | No |
| type | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | UserActivityType | No |
| in | UserActivityType[] | No |
| notIn | UserActivityType[] | No |
| not | UserActivityType | NestedEnumUserActivityTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumUserActivityTypeFilter | No |
| _max | NestedEnumUserActivityTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | ChatWhereInput | No |
| isNot | ChatWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | NotificationType | No |
| in | NotificationType[] | No |
| notIn | NotificationType[] | No |
| not | NotificationType | NestedEnumNotificationTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| chatId | SortOrder | No |
| friendshipId | SortOrder | No |
| opened | SortOrder | No |
| postId | SortOrder | No |
| type | SortOrder | No |
| updatedAt | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| chatId | SortOrder | No |
| friendshipId | SortOrder | No |
| opened | SortOrder | No |
| postId | SortOrder | No |
| type | SortOrder | No |
| updatedAt | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| chatId | SortOrder | No |
| friendshipId | SortOrder | No |
| opened | SortOrder | No |
| postId | SortOrder | No |
| type | SortOrder | No |
| updatedAt | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | NotificationType | No |
| in | NotificationType[] | No |
| notIn | NotificationType[] | No |
| not | NotificationType | NestedEnumNotificationTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumNotificationTypeFilter | No |
| _max | NestedEnumNotificationTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| frienderId | String | No |
| friendingId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| frienderId | SortOrder | No |
| friendingId | SortOrder | No |
| rejected | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| frienderId | SortOrder | No |
| friendingId | SortOrder | No |
| rejected | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| frienderId | SortOrder | No |
| friendingId | SortOrder | No |
| rejected | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | FollowSkillWhereInput | Null | Yes |
| isNot | FollowSkillWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | FollowUserWhereInput | Null | Yes |
| isNot | FollowUserWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| followerId | String | No |
| followingId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| followId | SortOrder | No |
| followerId | SortOrder | No |
| followingId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| followId | SortOrder | No |
| followerId | SortOrder | No |
| followingId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| followId | SortOrder | No |
| followerId | SortOrder | No |
| followingId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | SkillWhereInput | No |
| isNot | SkillWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| followerId | String | No |
| followingId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| followId | SortOrder | No |
| followerId | SortOrder | No |
| followingId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| followId | SortOrder | No |
| followerId | SortOrder | No |
| followingId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| followId | SortOrder | No |
| followerId | SortOrder | No |
| followingId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | JsonNullValueFilter | Json | No |
| not | JsonNullValueFilter | Json | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| chatId | SortOrder | No |
| content | SortOrder | No |
| senderId | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| chatId | SortOrder | No |
| senderId | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| chatId | SortOrder | No |
| senderId | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | JsonNullValueFilter | Json | No |
| not | JsonNullValueFilter | Json | No |
| _count | NestedIntFilter | No |
| _min | NestedJsonFilter | No |
| _max | NestedJsonFilter | No |
| Name | Type | Nullable |
|---|---|---|
| chatId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| chatId | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| chatId | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| chatId | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | JsonNullValueFilter | Json | No |
| not | JsonNullValueFilter | Json | No |
| Name | Type | Nullable |
|---|---|---|
| every | PostImageWhereInput | No |
| some | PostImageWhereInput | No |
| none | PostImageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | SkillsOnPostsWhereInput | No |
| some | SkillsOnPostsWhereInput | No |
| none | SkillsOnPostsWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | No |
| urlSlug | String | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | SortOrder | No |
| content | SortOrder | No |
| createdAt | SortOrder | No |
| description | SortOrder | No |
| id | SortOrder | No |
| publishedAt | SortOrder | No |
| readTime | SortOrder | No |
| title | SortOrder | No |
| thumbnailUrl | SortOrder | No |
| updatedAt | SortOrder | No |
| urlSlug | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| readTime | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | SortOrder | No |
| createdAt | SortOrder | No |
| description | SortOrder | No |
| id | SortOrder | No |
| publishedAt | SortOrder | No |
| readTime | SortOrder | No |
| title | SortOrder | No |
| thumbnailUrl | SortOrder | No |
| updatedAt | SortOrder | No |
| urlSlug | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | SortOrder | No |
| createdAt | SortOrder | No |
| description | SortOrder | No |
| id | SortOrder | No |
| publishedAt | SortOrder | No |
| readTime | SortOrder | No |
| title | SortOrder | No |
| thumbnailUrl | SortOrder | No |
| updatedAt | SortOrder | No |
| urlSlug | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| readTime | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | JsonNullValueFilter | Json | No |
| not | JsonNullValueFilter | Json | No |
| _count | NestedIntNullableFilter | No |
| _min | NestedJsonNullableFilter | No |
| _max | NestedJsonNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| postId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| postId | SortOrder | No |
| upvote | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| postId | SortOrder | No |
| upvote | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| postId | SortOrder | No |
| upvote | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| postId | SortOrder | No |
| url | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| postId | SortOrder | No |
| url | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| postId | SortOrder | No |
| url | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| authorId | SortOrder | No |
| content | SortOrder | No |
| createdAt | SortOrder | No |
| parentId | SortOrder | No |
| postId | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| authorId | SortOrder | No |
| createdAt | SortOrder | No |
| parentId | SortOrder | No |
| postId | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| authorId | SortOrder | No |
| createdAt | SortOrder | No |
| parentId | SortOrder | No |
| postId | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| commentId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| commentId | SortOrder | No |
| upvote | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| commentId | SortOrder | No |
| upvote | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| commentId | SortOrder | No |
| upvote | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | SkillsOnRepositoriesWhereInput | No |
| some | SkillsOnRepositoriesWhereInput | No |
| none | SkillsOnRepositoriesWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| owner | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| owner | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| owner | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| owner | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| skillId | String | No |
| postId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| postId | SortOrder | No |
| skillId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| postId | SortOrder | No |
| skillId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| postId | SortOrder | No |
| skillId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| skillId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| skillId | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| skillId | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| skillId | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| skillId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| skillId | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| skillId | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| skillId | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| owner | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| owner | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| owner | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| owner | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | RepositoryWhereInput | No |
| isNot | RepositoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| skillId | String | No |
| repositoryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| skillId | SortOrder | No |
| repositoryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| skillId | SortOrder | No |
| repositoryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| skillId | SortOrder | No |
| repositoryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| has | String | Null | Yes |
| hasEvery | String | No |
| hasSome | String | No |
| isEmpty | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| is | OrganizationWhereInput | No |
| isNot | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ExperienceType | Null | Yes |
| in | ExperienceType[] | Null | Yes |
| notIn | ExperienceType[] | Null | Yes |
| not | ExperienceType | NestedEnumExperienceTypeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| endDate | SortOrder | No |
| highlights | SortOrder | No |
| location | SortOrder | No |
| organizationName | SortOrder | No |
| positionName | SortOrder | No |
| startDate | SortOrder | No |
| type | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| endDate | SortOrder | No |
| location | SortOrder | No |
| organizationName | SortOrder | No |
| positionName | SortOrder | No |
| startDate | SortOrder | No |
| type | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| endDate | SortOrder | No |
| location | SortOrder | No |
| organizationName | SortOrder | No |
| positionName | SortOrder | No |
| startDate | SortOrder | No |
| type | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ExperienceType | Null | Yes |
| in | ExperienceType[] | Null | Yes |
| notIn | ExperienceType[] | Null | Yes |
| not | ExperienceType | NestedEnumExperienceTypeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumExperienceTypeNullableFilter | No |
| _max | NestedEnumExperienceTypeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAccountsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | Int | Null | Yes |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAccountsInput | No |
| upsert | UserUpsertWithoutAccountsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutAccountsInput | UserUncheckedUpdateWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSessionsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSessionsInput | No |
| upsert | UserUpsertWithoutSessionsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutSessionsInput | UserUncheckedUpdateWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserActivityCreateWithoutUserInput | UserActivityCreateWithoutUserInput[] | UserActivityUncheckedCreateWithoutUserInput | UserActivityUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | UserActivityCreateOrConnectWithoutUserInput | UserActivityCreateOrConnectWithoutUserInput[] | No |
| createMany | UserActivityCreateManyUserInputEnvelope | No |
| connect | UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatsOnUsersCreateWithoutUserInput | ChatsOnUsersCreateWithoutUserInput[] | ChatsOnUsersUncheckedCreateWithoutUserInput | ChatsOnUsersUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | ChatsOnUsersCreateOrConnectWithoutUserInput | ChatsOnUsersCreateOrConnectWithoutUserInput[] | No |
| createMany | ChatsOnUsersCreateManyUserInputEnvelope | No |
| connect | ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatMessageCreateWithoutSenderInput | ChatMessageCreateWithoutSenderInput[] | ChatMessageUncheckedCreateWithoutSenderInput | ChatMessageUncheckedCreateWithoutSenderInput[] | No |
| connectOrCreate | ChatMessageCreateOrConnectWithoutSenderInput | ChatMessageCreateOrConnectWithoutSenderInput[] | No |
| createMany | ChatMessageCreateManySenderInputEnvelope | No |
| connect | ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] | No |
| createMany | CommentCreateManyAuthorInputEnvelope | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ExperienceCreateWithoutUserInput | ExperienceCreateWithoutUserInput[] | ExperienceUncheckedCreateWithoutUserInput | ExperienceUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | ExperienceCreateOrConnectWithoutUserInput | ExperienceCreateOrConnectWithoutUserInput[] | No |
| createMany | ExperienceCreateManyUserInputEnvelope | No |
| connect | ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowUserCreateWithoutFollowingInput | FollowUserCreateWithoutFollowingInput[] | FollowUserUncheckedCreateWithoutFollowingInput | FollowUserUncheckedCreateWithoutFollowingInput[] | No |
| connectOrCreate | FollowUserCreateOrConnectWithoutFollowingInput | FollowUserCreateOrConnectWithoutFollowingInput[] | No |
| createMany | FollowUserCreateManyFollowingInputEnvelope | No |
| connect | FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowSkillCreateWithoutFollowerInput | FollowSkillCreateWithoutFollowerInput[] | FollowSkillUncheckedCreateWithoutFollowerInput | FollowSkillUncheckedCreateWithoutFollowerInput[] | No |
| connectOrCreate | FollowSkillCreateOrConnectWithoutFollowerInput | FollowSkillCreateOrConnectWithoutFollowerInput[] | No |
| createMany | FollowSkillCreateManyFollowerInputEnvelope | No |
| connect | FollowSkillWhereUniqueInput | FollowSkillWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowUserCreateWithoutFollowerInput | FollowUserCreateWithoutFollowerInput[] | FollowUserUncheckedCreateWithoutFollowerInput | FollowUserUncheckedCreateWithoutFollowerInput[] | No |
| connectOrCreate | FollowUserCreateOrConnectWithoutFollowerInput | FollowUserCreateOrConnectWithoutFollowerInput[] | No |
| createMany | FollowUserCreateManyFollowerInputEnvelope | No |
| connect | FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FriendshipCreateWithoutFriendingInput | FriendshipCreateWithoutFriendingInput[] | FriendshipUncheckedCreateWithoutFriendingInput | FriendshipUncheckedCreateWithoutFriendingInput[] | No |
| connectOrCreate | FriendshipCreateOrConnectWithoutFriendingInput | FriendshipCreateOrConnectWithoutFriendingInput[] | No |
| createMany | FriendshipCreateManyFriendingInputEnvelope | No |
| connect | FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FriendshipCreateWithoutFrienderInput | FriendshipCreateWithoutFrienderInput[] | FriendshipUncheckedCreateWithoutFrienderInput | FriendshipUncheckedCreateWithoutFrienderInput[] | No |
| connectOrCreate | FriendshipCreateOrConnectWithoutFrienderInput | FriendshipCreateOrConnectWithoutFrienderInput[] | No |
| createMany | FriendshipCreateManyFrienderInputEnvelope | No |
| connect | FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | NotificationCreateWithoutUserInput | NotificationCreateWithoutUserInput[] | NotificationUncheckedCreateWithoutUserInput | NotificationUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | NotificationCreateOrConnectWithoutUserInput | NotificationCreateOrConnectWithoutUserInput[] | No |
| createMany | NotificationCreateManyUserInputEnvelope | No |
| connect | NotificationWhereUniqueInput | NotificationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutAuthorInput | PostCreateWithoutAuthorInput[] | PostUncheckedCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutAuthorInput | PostCreateOrConnectWithoutAuthorInput[] | No |
| createMany | PostCreateManyAuthorInputEnvelope | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RepositoryCreateWithoutUserInput | RepositoryCreateWithoutUserInput[] | RepositoryUncheckedCreateWithoutUserInput | RepositoryUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | RepositoryCreateOrConnectWithoutUserInput | RepositoryCreateOrConnectWithoutUserInput[] | No |
| createMany | RepositoryCreateManyUserInputEnvelope | No |
| connect | RepositoryWhereUniqueInput | RepositoryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SkillsOnUsersCreateWithoutUserInput | SkillsOnUsersCreateWithoutUserInput[] | SkillsOnUsersUncheckedCreateWithoutUserInput | SkillsOnUsersUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SkillsOnUsersCreateOrConnectWithoutUserInput | SkillsOnUsersCreateOrConnectWithoutUserInput[] | No |
| createMany | SkillsOnUsersCreateManyUserInputEnvelope | No |
| connect | SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentUpvoterCreateWithoutUserInput | CommentUpvoterCreateWithoutUserInput[] | CommentUpvoterUncheckedCreateWithoutUserInput | CommentUpvoterUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | CommentUpvoterCreateOrConnectWithoutUserInput | CommentUpvoterCreateOrConnectWithoutUserInput[] | No |
| createMany | CommentUpvoterCreateManyUserInputEnvelope | No |
| connect | CommentUpvoterWhereUniqueInput | CommentUpvoterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostUpvoterCreateWithoutUserInput | PostUpvoterCreateWithoutUserInput[] | PostUpvoterUncheckedCreateWithoutUserInput | PostUpvoterUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | PostUpvoterCreateOrConnectWithoutUserInput | PostUpvoterCreateOrConnectWithoutUserInput[] | No |
| createMany | PostUpvoterCreateManyUserInputEnvelope | No |
| connect | PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserActivityCreateWithoutUserInput | UserActivityCreateWithoutUserInput[] | UserActivityUncheckedCreateWithoutUserInput | UserActivityUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | UserActivityCreateOrConnectWithoutUserInput | UserActivityCreateOrConnectWithoutUserInput[] | No |
| createMany | UserActivityCreateManyUserInputEnvelope | No |
| connect | UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatsOnUsersCreateWithoutUserInput | ChatsOnUsersCreateWithoutUserInput[] | ChatsOnUsersUncheckedCreateWithoutUserInput | ChatsOnUsersUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | ChatsOnUsersCreateOrConnectWithoutUserInput | ChatsOnUsersCreateOrConnectWithoutUserInput[] | No |
| createMany | ChatsOnUsersCreateManyUserInputEnvelope | No |
| connect | ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatMessageCreateWithoutSenderInput | ChatMessageCreateWithoutSenderInput[] | ChatMessageUncheckedCreateWithoutSenderInput | ChatMessageUncheckedCreateWithoutSenderInput[] | No |
| connectOrCreate | ChatMessageCreateOrConnectWithoutSenderInput | ChatMessageCreateOrConnectWithoutSenderInput[] | No |
| createMany | ChatMessageCreateManySenderInputEnvelope | No |
| connect | ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] | No |
| createMany | CommentCreateManyAuthorInputEnvelope | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ExperienceCreateWithoutUserInput | ExperienceCreateWithoutUserInput[] | ExperienceUncheckedCreateWithoutUserInput | ExperienceUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | ExperienceCreateOrConnectWithoutUserInput | ExperienceCreateOrConnectWithoutUserInput[] | No |
| createMany | ExperienceCreateManyUserInputEnvelope | No |
| connect | ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowUserCreateWithoutFollowingInput | FollowUserCreateWithoutFollowingInput[] | FollowUserUncheckedCreateWithoutFollowingInput | FollowUserUncheckedCreateWithoutFollowingInput[] | No |
| connectOrCreate | FollowUserCreateOrConnectWithoutFollowingInput | FollowUserCreateOrConnectWithoutFollowingInput[] | No |
| createMany | FollowUserCreateManyFollowingInputEnvelope | No |
| connect | FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowSkillCreateWithoutFollowerInput | FollowSkillCreateWithoutFollowerInput[] | FollowSkillUncheckedCreateWithoutFollowerInput | FollowSkillUncheckedCreateWithoutFollowerInput[] | No |
| connectOrCreate | FollowSkillCreateOrConnectWithoutFollowerInput | FollowSkillCreateOrConnectWithoutFollowerInput[] | No |
| createMany | FollowSkillCreateManyFollowerInputEnvelope | No |
| connect | FollowSkillWhereUniqueInput | FollowSkillWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowUserCreateWithoutFollowerInput | FollowUserCreateWithoutFollowerInput[] | FollowUserUncheckedCreateWithoutFollowerInput | FollowUserUncheckedCreateWithoutFollowerInput[] | No |
| connectOrCreate | FollowUserCreateOrConnectWithoutFollowerInput | FollowUserCreateOrConnectWithoutFollowerInput[] | No |
| createMany | FollowUserCreateManyFollowerInputEnvelope | No |
| connect | FollowUserWhereUniqueInput | FollowUserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FriendshipCreateWithoutFriendingInput | FriendshipCreateWithoutFriendingInput[] | FriendshipUncheckedCreateWithoutFriendingInput | FriendshipUncheckedCreateWithoutFriendingInput[] | No |
| connectOrCreate | FriendshipCreateOrConnectWithoutFriendingInput | FriendshipCreateOrConnectWithoutFriendingInput[] | No |
| createMany | FriendshipCreateManyFriendingInputEnvelope | No |
| connect | FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FriendshipCreateWithoutFrienderInput | FriendshipCreateWithoutFrienderInput[] | FriendshipUncheckedCreateWithoutFrienderInput | FriendshipUncheckedCreateWithoutFrienderInput[] | No |
| connectOrCreate | FriendshipCreateOrConnectWithoutFrienderInput | FriendshipCreateOrConnectWithoutFrienderInput[] | No |
| createMany | FriendshipCreateManyFrienderInputEnvelope | No |
| connect | FriendshipWhereUniqueInput | FriendshipWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | NotificationCreateWithoutUserInput | NotificationCreateWithoutUserInput[] | NotificationUncheckedCreateWithoutUserInput | NotificationUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | NotificationCreateOrConnectWithoutUserInput | NotificationCreateOrConnectWithoutUserInput[] | No |
| createMany | NotificationCreateManyUserInputEnvelope | No |
| connect | NotificationWhereUniqueInput | NotificationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutAuthorInput | PostCreateWithoutAuthorInput[] | PostUncheckedCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutAuthorInput | PostCreateOrConnectWithoutAuthorInput[] | No |
| createMany | PostCreateManyAuthorInputEnvelope | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RepositoryCreateWithoutUserInput | RepositoryCreateWithoutUserInput[] | RepositoryUncheckedCreateWithoutUserInput | RepositoryUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | RepositoryCreateOrConnectWithoutUserInput | RepositoryCreateOrConnectWithoutUserInput[] | No |
| createMany | RepositoryCreateManyUserInputEnvelope | No |
| connect | RepositoryWhereUniqueInput | RepositoryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SkillsOnUsersCreateWithoutUserInput | SkillsOnUsersCreateWithoutUserInput[] | SkillsOnUsersUncheckedCreateWithoutUserInput | SkillsOnUsersUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SkillsOnUsersCreateOrConnectWithoutUserInput | SkillsOnUsersCreateOrConnectWithoutUserInput[] | No |
| createMany | SkillsOnUsersCreateManyUserInputEnvelope | No |
| connect | SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentUpvoterCreateWithoutUserInput | CommentUpvoterCreateWithoutUserInput[] | CommentUpvoterUncheckedCreateWithoutUserInput | CommentUpvoterUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | CommentUpvoterCreateOrConnectWithoutUserInput | CommentUpvoterCreateOrConnectWithoutUserInput[] | No |
| createMany | CommentUpvoterCreateManyUserInputEnvelope | No |
| connect | CommentUpvoterWhereUniqueInput | CommentUpvoterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostUpvoterCreateWithoutUserInput | PostUpvoterCreateWithoutUserInput[] | PostUpvoterUncheckedCreateWithoutUserInput | PostUpvoterUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | PostUpvoterCreateOrConnectWithoutUserInput | PostUpvoterCreateOrConnectWithoutUserInput[] | No |
| createMany | PostUpvoterCreateManyUserInputEnvelope | No |
| connect | PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| upsert | AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| set | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| disconnect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| delete | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| update | AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] | No |
| upsert | CommentUpsertWithWhereUniqueWithoutAuthorInput | CommentUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | CommentCreateManyAuthorInputEnvelope | No |
| set | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| disconnect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| delete | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| update | CommentUpdateWithWhereUniqueWithoutAuthorInput | CommentUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | CommentUpdateManyWithWhereWithoutAuthorInput | CommentUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutAuthorInput | PostCreateWithoutAuthorInput[] | PostUncheckedCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutAuthorInput | PostCreateOrConnectWithoutAuthorInput[] | No |
| upsert | PostUpsertWithWhereUniqueWithoutAuthorInput | PostUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | PostCreateManyAuthorInputEnvelope | No |
| set | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| disconnect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| delete | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| update | PostUpdateWithWhereUniqueWithoutAuthorInput | PostUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | PostUpdateManyWithWhereWithoutAuthorInput | PostUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | PostScalarWhereInput | PostScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| upsert | SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| set | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| disconnect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| delete | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| update | SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| upsert | AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| set | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| disconnect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| delete | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| update | AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] | No |
| upsert | CommentUpsertWithWhereUniqueWithoutAuthorInput | CommentUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | CommentCreateManyAuthorInputEnvelope | No |
| set | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| disconnect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| delete | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| update | CommentUpdateWithWhereUniqueWithoutAuthorInput | CommentUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | CommentUpdateManyWithWhereWithoutAuthorInput | CommentUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutAuthorInput | PostCreateWithoutAuthorInput[] | PostUncheckedCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutAuthorInput | PostCreateOrConnectWithoutAuthorInput[] | No |
| upsert | PostUpsertWithWhereUniqueWithoutAuthorInput | PostUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | PostCreateManyAuthorInputEnvelope | No |
| set | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| disconnect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| delete | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| update | PostUpdateWithWhereUniqueWithoutAuthorInput | PostUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | PostUpdateManyWithWhereWithoutAuthorInput | PostUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | PostScalarWhereInput | PostScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| upsert | SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| set | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| disconnect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| delete | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| update | SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutActivitiesInput | CommentUncheckedCreateWithoutActivitiesInput | No |
| connectOrCreate | CommentCreateOrConnectWithoutActivitiesInput | No |
| connect | CommentWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowCreateWithoutActivitiesInput | FollowUncheckedCreateWithoutActivitiesInput | No |
| connectOrCreate | FollowCreateOrConnectWithoutActivitiesInput | No |
| connect | FollowWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FriendshipCreateWithoutActivitiesInput | FriendshipUncheckedCreateWithoutActivitiesInput | No |
| connectOrCreate | FriendshipCreateOrConnectWithoutActivitiesInput | No |
| connect | FriendshipWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutActivitiesInput | PostUncheckedCreateWithoutActivitiesInput | No |
| connectOrCreate | PostCreateOrConnectWithoutActivitiesInput | No |
| connect | PostWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutActivitiesInput | UserUncheckedCreateWithoutActivitiesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutActivitiesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | UserActivityType | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutActivitiesInput | CommentUncheckedCreateWithoutActivitiesInput | No |
| connectOrCreate | CommentCreateOrConnectWithoutActivitiesInput | No |
| upsert | CommentUpsertWithoutActivitiesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | CommentWhereUniqueInput | No |
| update | CommentUpdateWithoutActivitiesInput | CommentUncheckedUpdateWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowCreateWithoutActivitiesInput | FollowUncheckedCreateWithoutActivitiesInput | No |
| connectOrCreate | FollowCreateOrConnectWithoutActivitiesInput | No |
| upsert | FollowUpsertWithoutActivitiesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | FollowWhereUniqueInput | No |
| update | FollowUpdateWithoutActivitiesInput | FollowUncheckedUpdateWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FriendshipCreateWithoutActivitiesInput | FriendshipUncheckedCreateWithoutActivitiesInput | No |
| connectOrCreate | FriendshipCreateOrConnectWithoutActivitiesInput | No |
| upsert | FriendshipUpsertWithoutActivitiesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | FriendshipWhereUniqueInput | No |
| update | FriendshipUpdateWithoutActivitiesInput | FriendshipUncheckedUpdateWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutActivitiesInput | PostUncheckedCreateWithoutActivitiesInput | No |
| connectOrCreate | PostCreateOrConnectWithoutActivitiesInput | No |
| upsert | PostUpsertWithoutActivitiesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PostWhereUniqueInput | No |
| update | PostUpdateWithoutActivitiesInput | PostUncheckedUpdateWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutActivitiesInput | UserUncheckedCreateWithoutActivitiesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutActivitiesInput | No |
| upsert | UserUpsertWithoutActivitiesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutActivitiesInput | UserUncheckedUpdateWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatCreateWithoutNotificationsInput | ChatUncheckedCreateWithoutNotificationsInput | No |
| connectOrCreate | ChatCreateOrConnectWithoutNotificationsInput | No |
| connect | ChatWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FriendshipCreateWithoutNotificationsInput | FriendshipUncheckedCreateWithoutNotificationsInput | No |
| connectOrCreate | FriendshipCreateOrConnectWithoutNotificationsInput | No |
| connect | FriendshipWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutNotificationsInput | PostUncheckedCreateWithoutNotificationsInput | No |
| connectOrCreate | PostCreateOrConnectWithoutNotificationsInput | No |
| connect | PostWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutNotificationsInput | UserUncheckedCreateWithoutNotificationsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutNotificationsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| set | NotificationType | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatCreateWithoutNotificationsInput | ChatUncheckedCreateWithoutNotificationsInput | No |
| connectOrCreate | ChatCreateOrConnectWithoutNotificationsInput | No |
| upsert | ChatUpsertWithoutNotificationsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ChatWhereUniqueInput | No |
| update | ChatUpdateWithoutNotificationsInput | ChatUncheckedUpdateWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FriendshipCreateWithoutNotificationsInput | FriendshipUncheckedCreateWithoutNotificationsInput | No |
| connectOrCreate | FriendshipCreateOrConnectWithoutNotificationsInput | No |
| upsert | FriendshipUpsertWithoutNotificationsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | FriendshipWhereUniqueInput | No |
| update | FriendshipUpdateWithoutNotificationsInput | FriendshipUncheckedUpdateWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutNotificationsInput | PostUncheckedCreateWithoutNotificationsInput | No |
| connectOrCreate | PostCreateOrConnectWithoutNotificationsInput | No |
| upsert | PostUpsertWithoutNotificationsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PostWhereUniqueInput | No |
| update | PostUpdateWithoutNotificationsInput | PostUncheckedUpdateWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutNotificationsInput | UserUncheckedCreateWithoutNotificationsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutNotificationsInput | No |
| upsert | UserUpsertWithoutNotificationsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutNotificationsInput | UserUncheckedUpdateWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFriendingInput | UserUncheckedCreateWithoutFriendingInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFriendingInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFriendedByInput | UserUncheckedCreateWithoutFriendedByInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFriendedByInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFriendingInput | UserUncheckedCreateWithoutFriendingInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFriendingInput | No |
| upsert | UserUpsertWithoutFriendingInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutFriendingInput | UserUncheckedUpdateWithoutFriendingInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFriendedByInput | UserUncheckedCreateWithoutFriendedByInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFriendedByInput | No |
| upsert | UserUpsertWithoutFriendedByInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutFriendedByInput | UserUncheckedUpdateWithoutFriendedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserActivityCreateWithoutFollowInput | UserActivityCreateWithoutFollowInput[] | UserActivityUncheckedCreateWithoutFollowInput | UserActivityUncheckedCreateWithoutFollowInput[] | No |
| connectOrCreate | UserActivityCreateOrConnectWithoutFollowInput | UserActivityCreateOrConnectWithoutFollowInput[] | No |
| createMany | UserActivityCreateManyFollowInputEnvelope | No |
| connect | UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowSkillCreateWithoutFollowInput | FollowSkillUncheckedCreateWithoutFollowInput | No |
| connectOrCreate | FollowSkillCreateOrConnectWithoutFollowInput | No |
| connect | FollowSkillWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowUserCreateWithoutFollowInput | FollowUserUncheckedCreateWithoutFollowInput | No |
| connectOrCreate | FollowUserCreateOrConnectWithoutFollowInput | No |
| connect | FollowUserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserActivityCreateWithoutFollowInput | UserActivityCreateWithoutFollowInput[] | UserActivityUncheckedCreateWithoutFollowInput | UserActivityUncheckedCreateWithoutFollowInput[] | No |
| connectOrCreate | UserActivityCreateOrConnectWithoutFollowInput | UserActivityCreateOrConnectWithoutFollowInput[] | No |
| createMany | UserActivityCreateManyFollowInputEnvelope | No |
| connect | UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowSkillCreateWithoutFollowInput | FollowSkillUncheckedCreateWithoutFollowInput | No |
| connectOrCreate | FollowSkillCreateOrConnectWithoutFollowInput | No |
| connect | FollowSkillWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowUserCreateWithoutFollowInput | FollowUserUncheckedCreateWithoutFollowInput | No |
| connectOrCreate | FollowUserCreateOrConnectWithoutFollowInput | No |
| connect | FollowUserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowSkillCreateWithoutFollowInput | FollowSkillUncheckedCreateWithoutFollowInput | No |
| connectOrCreate | FollowSkillCreateOrConnectWithoutFollowInput | No |
| upsert | FollowSkillUpsertWithoutFollowInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | FollowSkillWhereUniqueInput | No |
| update | FollowSkillUpdateWithoutFollowInput | FollowSkillUncheckedUpdateWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowUserCreateWithoutFollowInput | FollowUserUncheckedCreateWithoutFollowInput | No |
| connectOrCreate | FollowUserCreateOrConnectWithoutFollowInput | No |
| upsert | FollowUserUpsertWithoutFollowInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | FollowUserWhereUniqueInput | No |
| update | FollowUserUpdateWithoutFollowInput | FollowUserUncheckedUpdateWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowSkillCreateWithoutFollowInput | FollowSkillUncheckedCreateWithoutFollowInput | No |
| connectOrCreate | FollowSkillCreateOrConnectWithoutFollowInput | No |
| upsert | FollowSkillUpsertWithoutFollowInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | FollowSkillWhereUniqueInput | No |
| update | FollowSkillUpdateWithoutFollowInput | FollowSkillUncheckedUpdateWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowUserCreateWithoutFollowInput | FollowUserUncheckedCreateWithoutFollowInput | No |
| connectOrCreate | FollowUserCreateOrConnectWithoutFollowInput | No |
| upsert | FollowUserUpsertWithoutFollowInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | FollowUserWhereUniqueInput | No |
| update | FollowUserUpdateWithoutFollowInput | FollowUserUncheckedUpdateWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowCreateWithoutFollowingUserInput | FollowUncheckedCreateWithoutFollowingUserInput | No |
| connectOrCreate | FollowCreateOrConnectWithoutFollowingUserInput | No |
| connect | FollowWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFollowingUserInput | UserUncheckedCreateWithoutFollowingUserInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFollowingUserInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFollowedByInput | UserUncheckedCreateWithoutFollowedByInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFollowedByInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowCreateWithoutFollowingUserInput | FollowUncheckedCreateWithoutFollowingUserInput | No |
| connectOrCreate | FollowCreateOrConnectWithoutFollowingUserInput | No |
| upsert | FollowUpsertWithoutFollowingUserInput | No |
| connect | FollowWhereUniqueInput | No |
| update | FollowUpdateWithoutFollowingUserInput | FollowUncheckedUpdateWithoutFollowingUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFollowingUserInput | UserUncheckedCreateWithoutFollowingUserInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFollowingUserInput | No |
| upsert | UserUpsertWithoutFollowingUserInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutFollowingUserInput | UserUncheckedUpdateWithoutFollowingUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFollowedByInput | UserUncheckedCreateWithoutFollowedByInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFollowedByInput | No |
| upsert | UserUpsertWithoutFollowedByInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutFollowedByInput | UserUncheckedUpdateWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowCreateWithoutFollowingSkillInput | FollowUncheckedCreateWithoutFollowingSkillInput | No |
| connectOrCreate | FollowCreateOrConnectWithoutFollowingSkillInput | No |
| connect | FollowWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFollowingSkillInput | UserUncheckedCreateWithoutFollowingSkillInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFollowingSkillInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SkillCreateWithoutFollowedByInput | SkillUncheckedCreateWithoutFollowedByInput | No |
| connectOrCreate | SkillCreateOrConnectWithoutFollowedByInput | No |
| connect | SkillWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowCreateWithoutFollowingSkillInput | FollowUncheckedCreateWithoutFollowingSkillInput | No |
| connectOrCreate | FollowCreateOrConnectWithoutFollowingSkillInput | No |
| upsert | FollowUpsertWithoutFollowingSkillInput | No |
| connect | FollowWhereUniqueInput | No |
| update | FollowUpdateWithoutFollowingSkillInput | FollowUncheckedUpdateWithoutFollowingSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFollowingSkillInput | UserUncheckedCreateWithoutFollowingSkillInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFollowingSkillInput | No |
| upsert | UserUpsertWithoutFollowingSkillInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutFollowingSkillInput | UserUncheckedUpdateWithoutFollowingSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SkillCreateWithoutFollowedByInput | SkillUncheckedCreateWithoutFollowedByInput | No |
| connectOrCreate | SkillCreateOrConnectWithoutFollowedByInput | No |
| upsert | SkillUpsertWithoutFollowedByInput | No |
| connect | SkillWhereUniqueInput | No |
| update | SkillUpdateWithoutFollowedByInput | SkillUncheckedUpdateWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatMessageCreateWithoutChatInput | ChatMessageCreateWithoutChatInput[] | ChatMessageUncheckedCreateWithoutChatInput | ChatMessageUncheckedCreateWithoutChatInput[] | No |
| connectOrCreate | ChatMessageCreateOrConnectWithoutChatInput | ChatMessageCreateOrConnectWithoutChatInput[] | No |
| createMany | ChatMessageCreateManyChatInputEnvelope | No |
| connect | ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | NotificationCreateWithoutChatInput | NotificationCreateWithoutChatInput[] | NotificationUncheckedCreateWithoutChatInput | NotificationUncheckedCreateWithoutChatInput[] | No |
| connectOrCreate | NotificationCreateOrConnectWithoutChatInput | NotificationCreateOrConnectWithoutChatInput[] | No |
| createMany | NotificationCreateManyChatInputEnvelope | No |
| connect | NotificationWhereUniqueInput | NotificationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatsOnUsersCreateWithoutChatInput | ChatsOnUsersCreateWithoutChatInput[] | ChatsOnUsersUncheckedCreateWithoutChatInput | ChatsOnUsersUncheckedCreateWithoutChatInput[] | No |
| connectOrCreate | ChatsOnUsersCreateOrConnectWithoutChatInput | ChatsOnUsersCreateOrConnectWithoutChatInput[] | No |
| createMany | ChatsOnUsersCreateManyChatInputEnvelope | No |
| connect | ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatMessageCreateWithoutChatInput | ChatMessageCreateWithoutChatInput[] | ChatMessageUncheckedCreateWithoutChatInput | ChatMessageUncheckedCreateWithoutChatInput[] | No |
| connectOrCreate | ChatMessageCreateOrConnectWithoutChatInput | ChatMessageCreateOrConnectWithoutChatInput[] | No |
| createMany | ChatMessageCreateManyChatInputEnvelope | No |
| connect | ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | NotificationCreateWithoutChatInput | NotificationCreateWithoutChatInput[] | NotificationUncheckedCreateWithoutChatInput | NotificationUncheckedCreateWithoutChatInput[] | No |
| connectOrCreate | NotificationCreateOrConnectWithoutChatInput | NotificationCreateOrConnectWithoutChatInput[] | No |
| createMany | NotificationCreateManyChatInputEnvelope | No |
| connect | NotificationWhereUniqueInput | NotificationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatsOnUsersCreateWithoutChatInput | ChatsOnUsersCreateWithoutChatInput[] | ChatsOnUsersUncheckedCreateWithoutChatInput | ChatsOnUsersUncheckedCreateWithoutChatInput[] | No |
| connectOrCreate | ChatsOnUsersCreateOrConnectWithoutChatInput | ChatsOnUsersCreateOrConnectWithoutChatInput[] | No |
| createMany | ChatsOnUsersCreateManyChatInputEnvelope | No |
| connect | ChatsOnUsersWhereUniqueInput | ChatsOnUsersWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatCreateWithoutMessagesInput | ChatUncheckedCreateWithoutMessagesInput | No |
| connectOrCreate | ChatCreateOrConnectWithoutMessagesInput | No |
| connect | ChatWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutChatMessagesInput | UserUncheckedCreateWithoutChatMessagesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutChatMessagesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatCreateWithoutMessagesInput | ChatUncheckedCreateWithoutMessagesInput | No |
| connectOrCreate | ChatCreateOrConnectWithoutMessagesInput | No |
| upsert | ChatUpsertWithoutMessagesInput | No |
| connect | ChatWhereUniqueInput | No |
| update | ChatUpdateWithoutMessagesInput | ChatUncheckedUpdateWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutChatMessagesInput | UserUncheckedCreateWithoutChatMessagesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutChatMessagesInput | No |
| upsert | UserUpsertWithoutChatMessagesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutChatMessagesInput | UserUncheckedUpdateWithoutChatMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatCreateWithoutUsersInput | ChatUncheckedCreateWithoutUsersInput | No |
| connectOrCreate | ChatCreateOrConnectWithoutUsersInput | No |
| connect | ChatWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutChatsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatCreateWithoutUsersInput | ChatUncheckedCreateWithoutUsersInput | No |
| connectOrCreate | ChatCreateOrConnectWithoutUsersInput | No |
| upsert | ChatUpsertWithoutUsersInput | No |
| connect | ChatWhereUniqueInput | No |
| update | ChatUpdateWithoutUsersInput | ChatUncheckedUpdateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutChatsInput | No |
| upsert | UserUpsertWithoutChatsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutChatsInput | UserUncheckedUpdateWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserActivityCreateWithoutPostInput | UserActivityCreateWithoutPostInput[] | UserActivityUncheckedCreateWithoutPostInput | UserActivityUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | UserActivityCreateOrConnectWithoutPostInput | UserActivityCreateOrConnectWithoutPostInput[] | No |
| createMany | UserActivityCreateManyPostInputEnvelope | No |
| connect | UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPostsInput | UserUncheckedCreateWithoutPostsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPostsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutPostInput | CommentCreateWithoutPostInput[] | CommentUncheckedCreateWithoutPostInput | CommentUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutPostInput | CommentCreateOrConnectWithoutPostInput[] | No |
| createMany | CommentCreateManyPostInputEnvelope | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostImageCreateWithoutPostInput | PostImageCreateWithoutPostInput[] | PostImageUncheckedCreateWithoutPostInput | PostImageUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | PostImageCreateOrConnectWithoutPostInput | PostImageCreateOrConnectWithoutPostInput[] | No |
| createMany | PostImageCreateManyPostInputEnvelope | No |
| connect | PostImageWhereUniqueInput | PostImageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | NotificationCreateWithoutPostInput | NotificationCreateWithoutPostInput[] | NotificationUncheckedCreateWithoutPostInput | NotificationUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | NotificationCreateOrConnectWithoutPostInput | NotificationCreateOrConnectWithoutPostInput[] | No |
| createMany | NotificationCreateManyPostInputEnvelope | No |
| connect | NotificationWhereUniqueInput | NotificationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SkillsOnPostsCreateWithoutPostInput | SkillsOnPostsCreateWithoutPostInput[] | SkillsOnPostsUncheckedCreateWithoutPostInput | SkillsOnPostsUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | SkillsOnPostsCreateOrConnectWithoutPostInput | SkillsOnPostsCreateOrConnectWithoutPostInput[] | No |
| createMany | SkillsOnPostsCreateManyPostInputEnvelope | No |
| connect | SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostUpvoterCreateWithoutPostInput | PostUpvoterCreateWithoutPostInput[] | PostUpvoterUncheckedCreateWithoutPostInput | PostUpvoterUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | PostUpvoterCreateOrConnectWithoutPostInput | PostUpvoterCreateOrConnectWithoutPostInput[] | No |
| createMany | PostUpvoterCreateManyPostInputEnvelope | No |
| connect | PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserActivityCreateWithoutPostInput | UserActivityCreateWithoutPostInput[] | UserActivityUncheckedCreateWithoutPostInput | UserActivityUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | UserActivityCreateOrConnectWithoutPostInput | UserActivityCreateOrConnectWithoutPostInput[] | No |
| createMany | UserActivityCreateManyPostInputEnvelope | No |
| connect | UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutPostInput | CommentCreateWithoutPostInput[] | CommentUncheckedCreateWithoutPostInput | CommentUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutPostInput | CommentCreateOrConnectWithoutPostInput[] | No |
| createMany | CommentCreateManyPostInputEnvelope | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostImageCreateWithoutPostInput | PostImageCreateWithoutPostInput[] | PostImageUncheckedCreateWithoutPostInput | PostImageUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | PostImageCreateOrConnectWithoutPostInput | PostImageCreateOrConnectWithoutPostInput[] | No |
| createMany | PostImageCreateManyPostInputEnvelope | No |
| connect | PostImageWhereUniqueInput | PostImageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | NotificationCreateWithoutPostInput | NotificationCreateWithoutPostInput[] | NotificationUncheckedCreateWithoutPostInput | NotificationUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | NotificationCreateOrConnectWithoutPostInput | NotificationCreateOrConnectWithoutPostInput[] | No |
| createMany | NotificationCreateManyPostInputEnvelope | No |
| connect | NotificationWhereUniqueInput | NotificationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SkillsOnPostsCreateWithoutPostInput | SkillsOnPostsCreateWithoutPostInput[] | SkillsOnPostsUncheckedCreateWithoutPostInput | SkillsOnPostsUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | SkillsOnPostsCreateOrConnectWithoutPostInput | SkillsOnPostsCreateOrConnectWithoutPostInput[] | No |
| createMany | SkillsOnPostsCreateManyPostInputEnvelope | No |
| connect | SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostUpvoterCreateWithoutPostInput | PostUpvoterCreateWithoutPostInput[] | PostUpvoterUncheckedCreateWithoutPostInput | PostUpvoterUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | PostUpvoterCreateOrConnectWithoutPostInput | PostUpvoterCreateOrConnectWithoutPostInput[] | No |
| createMany | PostUpvoterCreateManyPostInputEnvelope | No |
| connect | PostUpvoterWhereUniqueInput | PostUpvoterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPostsInput | UserUncheckedCreateWithoutPostsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPostsInput | No |
| upsert | UserUpsertWithoutPostsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutPostsInput | UserUncheckedUpdateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutPostInput | CommentCreateWithoutPostInput[] | CommentUncheckedCreateWithoutPostInput | CommentUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutPostInput | CommentCreateOrConnectWithoutPostInput[] | No |
| upsert | CommentUpsertWithWhereUniqueWithoutPostInput | CommentUpsertWithWhereUniqueWithoutPostInput[] | No |
| createMany | CommentCreateManyPostInputEnvelope | No |
| set | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| disconnect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| delete | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| update | CommentUpdateWithWhereUniqueWithoutPostInput | CommentUpdateWithWhereUniqueWithoutPostInput[] | No |
| updateMany | CommentUpdateManyWithWhereWithoutPostInput | CommentUpdateManyWithWhereWithoutPostInput[] | No |
| deleteMany | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutPostInput | CommentCreateWithoutPostInput[] | CommentUncheckedCreateWithoutPostInput | CommentUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutPostInput | CommentCreateOrConnectWithoutPostInput[] | No |
| upsert | CommentUpsertWithWhereUniqueWithoutPostInput | CommentUpsertWithWhereUniqueWithoutPostInput[] | No |
| createMany | CommentCreateManyPostInputEnvelope | No |
| set | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| disconnect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| delete | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| update | CommentUpdateWithWhereUniqueWithoutPostInput | CommentUpdateWithWhereUniqueWithoutPostInput[] | No |
| updateMany | CommentUpdateManyWithWhereWithoutPostInput | CommentUpdateManyWithWhereWithoutPostInput[] | No |
| deleteMany | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutUpvotersInput | PostUncheckedCreateWithoutUpvotersInput | No |
| connectOrCreate | PostCreateOrConnectWithoutUpvotersInput | No |
| connect | PostWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutUpvotedPostsInput | UserUncheckedCreateWithoutUpvotedPostsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutUpvotedPostsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutUpvotersInput | PostUncheckedCreateWithoutUpvotersInput | No |
| connectOrCreate | PostCreateOrConnectWithoutUpvotersInput | No |
| upsert | PostUpsertWithoutUpvotersInput | No |
| connect | PostWhereUniqueInput | No |
| update | PostUpdateWithoutUpvotersInput | PostUncheckedUpdateWithoutUpvotersInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutUpvotedPostsInput | UserUncheckedCreateWithoutUpvotedPostsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutUpvotedPostsInput | No |
| upsert | UserUpsertWithoutUpvotedPostsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutUpvotedPostsInput | UserUncheckedUpdateWithoutUpvotedPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutImagesInput | PostUncheckedCreateWithoutImagesInput | No |
| connectOrCreate | PostCreateOrConnectWithoutImagesInput | No |
| connect | PostWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutImagesInput | PostUncheckedCreateWithoutImagesInput | No |
| connectOrCreate | PostCreateOrConnectWithoutImagesInput | No |
| upsert | PostUpsertWithoutImagesInput | No |
| connect | PostWhereUniqueInput | No |
| update | PostUpdateWithoutImagesInput | PostUncheckedUpdateWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserActivityCreateWithoutCommentInput | UserActivityCreateWithoutCommentInput[] | UserActivityUncheckedCreateWithoutCommentInput | UserActivityUncheckedCreateWithoutCommentInput[] | No |
| connectOrCreate | UserActivityCreateOrConnectWithoutCommentInput | UserActivityCreateOrConnectWithoutCommentInput[] | No |
| createMany | UserActivityCreateManyCommentInputEnvelope | No |
| connect | UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCommentsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutRepliesInput | CommentUncheckedCreateWithoutRepliesInput | No |
| connectOrCreate | CommentCreateOrConnectWithoutRepliesInput | No |
| connect | CommentWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutCommentsInput | PostUncheckedCreateWithoutCommentsInput | No |
| connectOrCreate | PostCreateOrConnectWithoutCommentsInput | No |
| connect | PostWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutParentInput | CommentCreateWithoutParentInput[] | CommentUncheckedCreateWithoutParentInput | CommentUncheckedCreateWithoutParentInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutParentInput | CommentCreateOrConnectWithoutParentInput[] | No |
| createMany | CommentCreateManyParentInputEnvelope | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserActivityCreateWithoutCommentInput | UserActivityCreateWithoutCommentInput[] | UserActivityUncheckedCreateWithoutCommentInput | UserActivityUncheckedCreateWithoutCommentInput[] | No |
| connectOrCreate | UserActivityCreateOrConnectWithoutCommentInput | UserActivityCreateOrConnectWithoutCommentInput[] | No |
| createMany | UserActivityCreateManyCommentInputEnvelope | No |
| connect | UserActivityWhereUniqueInput | UserActivityWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutParentInput | CommentCreateWithoutParentInput[] | CommentUncheckedCreateWithoutParentInput | CommentUncheckedCreateWithoutParentInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutParentInput | CommentCreateOrConnectWithoutParentInput[] | No |
| createMany | CommentCreateManyParentInputEnvelope | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCommentsInput | No |
| upsert | UserUpsertWithoutCommentsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutCommentsInput | UserUncheckedUpdateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutRepliesInput | CommentUncheckedCreateWithoutRepliesInput | No |
| connectOrCreate | CommentCreateOrConnectWithoutRepliesInput | No |
| upsert | CommentUpsertWithoutRepliesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | CommentWhereUniqueInput | No |
| update | CommentUpdateWithoutRepliesInput | CommentUncheckedUpdateWithoutRepliesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutCommentsInput | PostUncheckedCreateWithoutCommentsInput | No |
| connectOrCreate | PostCreateOrConnectWithoutCommentsInput | No |
| upsert | PostUpsertWithoutCommentsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PostWhereUniqueInput | No |
| update | PostUpdateWithoutCommentsInput | PostUncheckedUpdateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutParentInput | CommentCreateWithoutParentInput[] | CommentUncheckedCreateWithoutParentInput | CommentUncheckedCreateWithoutParentInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutParentInput | CommentCreateOrConnectWithoutParentInput[] | No |
| upsert | CommentUpsertWithWhereUniqueWithoutParentInput | CommentUpsertWithWhereUniqueWithoutParentInput[] | No |
| createMany | CommentCreateManyParentInputEnvelope | No |
| set | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| disconnect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| delete | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| update | CommentUpdateWithWhereUniqueWithoutParentInput | CommentUpdateWithWhereUniqueWithoutParentInput[] | No |
| updateMany | CommentUpdateManyWithWhereWithoutParentInput | CommentUpdateManyWithWhereWithoutParentInput[] | No |
| deleteMany | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutParentInput | CommentCreateWithoutParentInput[] | CommentUncheckedCreateWithoutParentInput | CommentUncheckedCreateWithoutParentInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutParentInput | CommentCreateOrConnectWithoutParentInput[] | No |
| upsert | CommentUpsertWithWhereUniqueWithoutParentInput | CommentUpsertWithWhereUniqueWithoutParentInput[] | No |
| createMany | CommentCreateManyParentInputEnvelope | No |
| set | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| disconnect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| delete | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| update | CommentUpdateWithWhereUniqueWithoutParentInput | CommentUpdateWithWhereUniqueWithoutParentInput[] | No |
| updateMany | CommentUpdateManyWithWhereWithoutParentInput | CommentUpdateManyWithWhereWithoutParentInput[] | No |
| deleteMany | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutUpvotersInput | CommentUncheckedCreateWithoutUpvotersInput | No |
| connectOrCreate | CommentCreateOrConnectWithoutUpvotersInput | No |
| connect | CommentWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutUpvotedCommentsInput | UserUncheckedCreateWithoutUpvotedCommentsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutUpvotedCommentsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutUpvotersInput | CommentUncheckedCreateWithoutUpvotersInput | No |
| connectOrCreate | CommentCreateOrConnectWithoutUpvotersInput | No |
| upsert | CommentUpsertWithoutUpvotersInput | No |
| connect | CommentWhereUniqueInput | No |
| update | CommentUpdateWithoutUpvotersInput | CommentUncheckedUpdateWithoutUpvotersInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutUpvotedCommentsInput | UserUncheckedCreateWithoutUpvotedCommentsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutUpvotedCommentsInput | No |
| upsert | UserUpsertWithoutUpvotedCommentsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutUpvotedCommentsInput | UserUncheckedUpdateWithoutUpvotedCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SkillsOnUsersCreateWithoutSkillInput | SkillsOnUsersCreateWithoutSkillInput[] | SkillsOnUsersUncheckedCreateWithoutSkillInput | SkillsOnUsersUncheckedCreateWithoutSkillInput[] | No |
| connectOrCreate | SkillsOnUsersCreateOrConnectWithoutSkillInput | SkillsOnUsersCreateOrConnectWithoutSkillInput[] | No |
| createMany | SkillsOnUsersCreateManySkillInputEnvelope | No |
| connect | SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SkillsOnPostsCreateWithoutSkillInput | SkillsOnPostsCreateWithoutSkillInput[] | SkillsOnPostsUncheckedCreateWithoutSkillInput | SkillsOnPostsUncheckedCreateWithoutSkillInput[] | No |
| connectOrCreate | SkillsOnPostsCreateOrConnectWithoutSkillInput | SkillsOnPostsCreateOrConnectWithoutSkillInput[] | No |
| createMany | SkillsOnPostsCreateManySkillInputEnvelope | No |
| connect | SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SkillsOnUsersCreateWithoutSkillInput | SkillsOnUsersCreateWithoutSkillInput[] | SkillsOnUsersUncheckedCreateWithoutSkillInput | SkillsOnUsersUncheckedCreateWithoutSkillInput[] | No |
| connectOrCreate | SkillsOnUsersCreateOrConnectWithoutSkillInput | SkillsOnUsersCreateOrConnectWithoutSkillInput[] | No |
| createMany | SkillsOnUsersCreateManySkillInputEnvelope | No |
| connect | SkillsOnUsersWhereUniqueInput | SkillsOnUsersWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SkillsOnPostsCreateWithoutSkillInput | SkillsOnPostsCreateWithoutSkillInput[] | SkillsOnPostsUncheckedCreateWithoutSkillInput | SkillsOnPostsUncheckedCreateWithoutSkillInput[] | No |
| connectOrCreate | SkillsOnPostsCreateOrConnectWithoutSkillInput | SkillsOnPostsCreateOrConnectWithoutSkillInput[] | No |
| createMany | SkillsOnPostsCreateManySkillInputEnvelope | No |
| connect | SkillsOnPostsWhereUniqueInput | SkillsOnPostsWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutSkillsInput | PostUncheckedCreateWithoutSkillsInput | No |
| connectOrCreate | PostCreateOrConnectWithoutSkillsInput | No |
| connect | PostWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SkillCreateWithoutPostsInput | SkillUncheckedCreateWithoutPostsInput | No |
| connectOrCreate | SkillCreateOrConnectWithoutPostsInput | No |
| connect | SkillWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutSkillsInput | PostUncheckedCreateWithoutSkillsInput | No |
| connectOrCreate | PostCreateOrConnectWithoutSkillsInput | No |
| upsert | PostUpsertWithoutSkillsInput | No |
| connect | PostWhereUniqueInput | No |
| update | PostUpdateWithoutSkillsInput | PostUncheckedUpdateWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SkillCreateWithoutPostsInput | SkillUncheckedCreateWithoutPostsInput | No |
| connectOrCreate | SkillCreateOrConnectWithoutPostsInput | No |
| upsert | SkillUpsertWithoutPostsInput | No |
| connect | SkillWhereUniqueInput | No |
| update | SkillUpdateWithoutPostsInput | SkillUncheckedUpdateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SkillCreateWithoutUsersInput | SkillUncheckedCreateWithoutUsersInput | No |
| connectOrCreate | SkillCreateOrConnectWithoutUsersInput | No |
| connect | SkillWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSkillsInput | UserUncheckedCreateWithoutSkillsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSkillsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SkillCreateWithoutUsersInput | SkillUncheckedCreateWithoutUsersInput | No |
| connectOrCreate | SkillCreateOrConnectWithoutUsersInput | No |
| upsert | SkillUpsertWithoutUsersInput | No |
| connect | SkillWhereUniqueInput | No |
| update | SkillUpdateWithoutUsersInput | SkillUncheckedUpdateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSkillsInput | UserUncheckedCreateWithoutSkillsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSkillsInput | No |
| upsert | UserUpsertWithoutSkillsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutSkillsInput | UserUncheckedUpdateWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SkillCreateWithoutDesiringUsersInput | SkillUncheckedCreateWithoutDesiringUsersInput | No |
| connectOrCreate | SkillCreateOrConnectWithoutDesiringUsersInput | No |
| connect | SkillWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutDesiredSkillsInput | UserUncheckedCreateWithoutDesiredSkillsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutDesiredSkillsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SkillCreateWithoutDesiringUsersInput | SkillUncheckedCreateWithoutDesiringUsersInput | No |
| connectOrCreate | SkillCreateOrConnectWithoutDesiringUsersInput | No |
| upsert | SkillUpsertWithoutDesiringUsersInput | No |
| connect | SkillWhereUniqueInput | No |
| update | SkillUpdateWithoutDesiringUsersInput | SkillUncheckedUpdateWithoutDesiringUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutDesiredSkillsInput | UserUncheckedCreateWithoutDesiredSkillsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutDesiredSkillsInput | No |
| upsert | UserUpsertWithoutDesiredSkillsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutDesiredSkillsInput | UserUncheckedUpdateWithoutDesiredSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutRepositoriesInput | UserUncheckedCreateWithoutRepositoriesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutRepositoriesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutRepositoriesInput | UserUncheckedCreateWithoutRepositoriesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutRepositoriesInput | No |
| upsert | UserUpsertWithoutRepositoriesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutRepositoriesInput | UserUncheckedUpdateWithoutRepositoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SkillCreateWithoutRepositoriesInput | SkillUncheckedCreateWithoutRepositoriesInput | No |
| connectOrCreate | SkillCreateOrConnectWithoutRepositoriesInput | No |
| connect | SkillWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RepositoryCreateWithoutSkillsInput | RepositoryUncheckedCreateWithoutSkillsInput | No |
| connectOrCreate | RepositoryCreateOrConnectWithoutSkillsInput | No |
| connect | RepositoryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SkillCreateWithoutRepositoriesInput | SkillUncheckedCreateWithoutRepositoriesInput | No |
| connectOrCreate | SkillCreateOrConnectWithoutRepositoriesInput | No |
| upsert | SkillUpsertWithoutRepositoriesInput | No |
| connect | SkillWhereUniqueInput | No |
| update | SkillUpdateWithoutRepositoriesInput | SkillUncheckedUpdateWithoutRepositoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RepositoryCreateWithoutSkillsInput | RepositoryUncheckedCreateWithoutSkillsInput | No |
| connectOrCreate | RepositoryCreateOrConnectWithoutSkillsInput | No |
| upsert | RepositoryUpsertWithoutSkillsInput | No |
| connect | RepositoryWhereUniqueInput | No |
| update | RepositoryUpdateWithoutSkillsInput | RepositoryUncheckedUpdateWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutExperiencesInput | OrganizationUncheckedCreateWithoutExperiencesInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutExperiencesInput | No |
| connect | OrganizationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutExperiencesInput | UserUncheckedCreateWithoutExperiencesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutExperiencesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | ExperienceType | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutExperiencesInput | OrganizationUncheckedCreateWithoutExperiencesInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutExperiencesInput | No |
| upsert | OrganizationUpsertWithoutExperiencesInput | No |
| connect | OrganizationWhereUniqueInput | No |
| update | OrganizationUpdateWithoutExperiencesInput | OrganizationUncheckedUpdateWithoutExperiencesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutExperiencesInput | UserUncheckedCreateWithoutExperiencesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutExperiencesInput | No |
| upsert | UserUpsertWithoutExperiencesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutExperiencesInput | UserUncheckedUpdateWithoutExperiencesInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | No |
| notIn | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | Null | Yes |
| in | Float | Null | Yes |
| notIn | Float | Null | Yes |
| lt | Float | No |
| lte | Float | No |
| gt | Float | No |
| gte | Float | No |
| not | Float | NestedFloatNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | No |
| notIn | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | No |
| in | Int | No |
| notIn | Int | No |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | Null | Yes |
| notIn | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | Null | Yes |
| notIn | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | UserActivityType | No |
| in | UserActivityType[] | No |
| notIn | UserActivityType[] | No |
| not | UserActivityType | NestedEnumUserActivityTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | UserActivityType | No |
| in | UserActivityType[] | No |
| notIn | UserActivityType[] | No |
| not | UserActivityType | NestedEnumUserActivityTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumUserActivityTypeFilter | No |
| _max | NestedEnumUserActivityTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | NotificationType | No |
| in | NotificationType[] | No |
| notIn | NotificationType[] | No |
| not | NotificationType | NestedEnumNotificationTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | NotificationType | No |
| in | NotificationType[] | No |
| notIn | NotificationType[] | No |
| not | NotificationType | NestedEnumNotificationTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumNotificationTypeFilter | No |
| _max | NestedEnumNotificationTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | JsonNullValueFilter | Json | No |
| not | JsonNullValueFilter | Json | No |
| Name | Type | Nullable |
|---|---|---|
| equals | JsonNullValueFilter | Json | No |
| not | JsonNullValueFilter | Json | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ExperienceType | Null | Yes |
| in | ExperienceType[] | Null | Yes |
| notIn | ExperienceType[] | Null | Yes |
| not | ExperienceType | NestedEnumExperienceTypeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | ExperienceType | Null | Yes |
| in | ExperienceType[] | Null | Yes |
| notIn | ExperienceType[] | Null | Yes |
| not | ExperienceType | NestedEnumExperienceTypeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumExperienceTypeNullableFilter | No |
| _max | NestedEnumExperienceTypeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutAccountsInput | UserUncheckedUpdateWithoutAccountsInput | No |
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutSessionsInput | UserUncheckedUpdateWithoutSessionsInput | No |
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | String | Null | Yes |
| expires_at | Int | Null | Yes |
| id | String | No |
| id_token | String | Null | Yes |
| provider | String | No |
| providerAccountId | String | No |
| oauth_token | String | Null | Yes |
| oauth_token_secret | String | Null | Yes |
| refresh_token | String | Null | Yes |
| scope | String | Null | Yes |
| session_state | String | Null | Yes |
| token_type | String | Null | Yes |
| type | String | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | String | Null | Yes |
| expires_at | Int | Null | Yes |
| id | String | No |
| id_token | String | Null | Yes |
| provider | String | No |
| providerAccountId | String | No |
| oauth_token | String | Null | Yes |
| oauth_token_secret | String | Null | Yes |
| refresh_token | String | Null | Yes |
| scope | String | Null | Yes |
| session_state | String | Null | Yes |
| token_type | String | Null | Yes |
| type | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | AccountWhereUniqueInput | No |
| create | AccountCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | AccountCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| type | UserActivityType | No |
| comment | CommentCreateNestedOneWithoutActivitiesInput | No |
| follow | FollowCreateNestedOneWithoutActivitiesInput | No |
| friendship | FriendshipCreateNestedOneWithoutActivitiesInput | No |
| post | PostCreateNestedOneWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId | String | Null | Yes |
| createdAt | DateTime | No |
| followId | String | Null | Yes |
| friendshipId | String | Null | Yes |
| postId | String | Null | Yes |
| type | UserActivityType | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityWhereUniqueInput | No |
| create | UserActivityCreateWithoutUserInput | UserActivityUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserActivityCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chat | ChatCreateNestedOneWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatsOnUsersWhereUniqueInput | No |
| create | ChatsOnUsersCreateWithoutUserInput | ChatsOnUsersUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ChatsOnUsersCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| content | JsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| chat | ChatCreateNestedOneWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | No |
| content | JsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| create | ChatMessageCreateWithoutSenderInput | ChatMessageUncheckedCreateWithoutSenderInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ChatMessageCreateManySenderInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| activities | UserActivityCreateNestedManyWithoutCommentInput | No |
| parent | CommentCreateNestedOneWithoutRepliesInput | No |
| post | PostCreateNestedOneWithoutCommentsInput | No |
| replies | CommentCreateNestedManyWithoutParentInput | No |
| upvoters | CommentUpvoterCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| parentId | String | Null | Yes |
| postId | String | Null | Yes |
| updatedAt | DateTime | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutCommentInput | No |
| replies | CommentUncheckedCreateNestedManyWithoutParentInput | No |
| upvoters | CommentUpvoterUncheckedCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| create | CommentCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CommentCreateManyAuthorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skill | SkillCreateNestedOneWithoutDesiringUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | DesiredSkillsOnUsersWhereUniqueInput | No |
| create | DesiredSkillsOnUsersCreateWithoutUserInput | DesiredSkillsOnUsersUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | DesiredSkillsOnUsersCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| endDate | DateTime | Null | Yes |
| location | String | Null | Yes |
| positionName | String | No |
| startDate | DateTime | No |
| type | ExperienceType | Null | Yes |
| highlights | ExperienceCreatehighlightsInput | String | No |
| organization | OrganizationCreateNestedOneWithoutExperiencesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| endDate | DateTime | Null | Yes |
| location | String | Null | Yes |
| organizationName | String | No |
| positionName | String | No |
| startDate | DateTime | No |
| type | ExperienceType | Null | Yes |
| highlights | ExperienceCreatehighlightsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ExperienceWhereUniqueInput | No |
| create | ExperienceCreateWithoutUserInput | ExperienceUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ExperienceCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| follow | FollowCreateNestedOneWithoutFollowingUserInput | No |
| follower | UserCreateNestedOneWithoutFollowingUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followId | String | No |
| followerId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowUserWhereUniqueInput | No |
| create | FollowUserCreateWithoutFollowingInput | FollowUserUncheckedCreateWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FollowUserCreateManyFollowingInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| follow | FollowCreateNestedOneWithoutFollowingSkillInput | No |
| following | SkillCreateNestedOneWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followId | String | No |
| followingId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowSkillWhereUniqueInput | No |
| create | FollowSkillCreateWithoutFollowerInput | FollowSkillUncheckedCreateWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FollowSkillCreateManyFollowerInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| follow | FollowCreateNestedOneWithoutFollowingUserInput | No |
| following | UserCreateNestedOneWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followId | String | No |
| followingId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowUserWhereUniqueInput | No |
| create | FollowUserCreateWithoutFollowerInput | FollowUserUncheckedCreateWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FollowUserCreateManyFollowerInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| rejected | Boolean | No |
| updatedAt | DateTime | No |
| activities | UserActivityCreateNestedManyWithoutFriendshipInput | No |
| friender | UserCreateNestedOneWithoutFriendingInput | No |
| notifications | NotificationCreateNestedManyWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| frienderId | String | No |
| rejected | Boolean | No |
| updatedAt | DateTime | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutFriendshipInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FriendshipWhereUniqueInput | No |
| create | FriendshipCreateWithoutFriendingInput | FriendshipUncheckedCreateWithoutFriendingInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FriendshipCreateManyFriendingInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| rejected | Boolean | No |
| updatedAt | DateTime | No |
| activities | UserActivityCreateNestedManyWithoutFriendshipInput | No |
| friending | UserCreateNestedOneWithoutFriendedByInput | No |
| notifications | NotificationCreateNestedManyWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| friendingId | String | No |
| rejected | Boolean | No |
| updatedAt | DateTime | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutFriendshipInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FriendshipWhereUniqueInput | No |
| create | FriendshipCreateWithoutFrienderInput | FriendshipUncheckedCreateWithoutFrienderInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FriendshipCreateManyFrienderInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| opened | Boolean | No |
| type | NotificationType | No |
| updatedAt | DateTime | No |
| chat | ChatCreateNestedOneWithoutNotificationsInput | No |
| friendship | FriendshipCreateNestedOneWithoutNotificationsInput | No |
| post | PostCreateNestedOneWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | Null | Yes |
| friendshipId | String | Null | Yes |
| opened | Boolean | No |
| postId | String | Null | Yes |
| type | NotificationType | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationWhereUniqueInput | No |
| create | NotificationCreateWithoutUserInput | NotificationUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | NotificationCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| description | String | Null | Yes |
| id | String | No |
| publishedAt | DateTime | Null | Yes |
| readTime | Int | Null | Yes |
| title | String | Null | Yes |
| thumbnailUrl | String | Null | Yes |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| activities | UserActivityCreateNestedManyWithoutPostInput | No |
| comments | CommentCreateNestedManyWithoutPostInput | No |
| images | PostImageCreateNestedManyWithoutPostInput | No |
| notifications | NotificationCreateNestedManyWithoutPostInput | No |
| skills | SkillsOnPostsCreateNestedManyWithoutPostInput | No |
| upvoters | PostUpvoterCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| description | String | Null | Yes |
| id | String | No |
| publishedAt | DateTime | Null | Yes |
| readTime | Int | Null | Yes |
| title | String | Null | Yes |
| thumbnailUrl | String | Null | Yes |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutPostInput | No |
| comments | CommentUncheckedCreateNestedManyWithoutPostInput | No |
| images | PostImageUncheckedCreateNestedManyWithoutPostInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutPostInput | No |
| skills | SkillsOnPostsUncheckedCreateNestedManyWithoutPostInput | No |
| upvoters | PostUpvoterUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PostCreateManyAuthorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| skills | SkillsOnRepositoriesCreateNestedManyWithoutRepositoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| skills | SkillsOnRepositoriesUncheckedCreateNestedManyWithoutRepositoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RepositoryWhereUniqueInput | No |
| create | RepositoryCreateWithoutUserInput | RepositoryUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RepositoryCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | No |
| id | String | No |
| sessionToken | String | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | No |
| id | String | No |
| sessionToken | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | SessionWhereUniqueInput | No |
| create | SessionCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SessionCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skill | SkillCreateNestedOneWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnUsersWhereUniqueInput | No |
| create | SkillsOnUsersCreateWithoutUserInput | SkillsOnUsersUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SkillsOnUsersCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| upvote | Boolean | No |
| comment | CommentCreateNestedOneWithoutUpvotersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId | String | No |
| upvote | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentUpvoterWhereUniqueInput | No |
| create | CommentUpvoterCreateWithoutUserInput | CommentUpvoterUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CommentUpvoterCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| upvote | Boolean | No |
| post | PostCreateNestedOneWithoutUpvotersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| upvote | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostUpvoterWhereUniqueInput | No |
| create | PostUpvoterCreateWithoutUserInput | PostUpvoterUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PostUpvoterCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | AccountWhereUniqueInput | No |
| update | AccountUpdateWithoutUserInput | AccountUncheckedUpdateWithoutUserInput | No |
| create | AccountCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AccountWhereUniqueInput | No |
| data | AccountUpdateWithoutUserInput | AccountUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AccountScalarWhereInput | No |
| data | AccountUpdateManyMutationInput | AccountUncheckedUpdateManyWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| OR | AccountScalarWhereInput[] | No |
| NOT | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| access_token | StringNullableFilter | String | Null | Yes |
| expires_at | IntNullableFilter | Int | Null | Yes |
| id | StringFilter | String | No |
| id_token | StringNullableFilter | String | Null | Yes |
| provider | StringFilter | String | No |
| providerAccountId | StringFilter | String | No |
| oauth_token | StringNullableFilter | String | Null | Yes |
| oauth_token_secret | StringNullableFilter | String | Null | Yes |
| refresh_token | StringNullableFilter | String | Null | Yes |
| scope | StringNullableFilter | String | Null | Yes |
| session_state | StringNullableFilter | String | Null | Yes |
| token_type | StringNullableFilter | String | Null | Yes |
| type | StringFilter | String | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityWhereUniqueInput | No |
| update | UserActivityUpdateWithoutUserInput | UserActivityUncheckedUpdateWithoutUserInput | No |
| create | UserActivityCreateWithoutUserInput | UserActivityUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityWhereUniqueInput | No |
| data | UserActivityUpdateWithoutUserInput | UserActivityUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityScalarWhereInput | No |
| data | UserActivityUpdateManyMutationInput | UserActivityUncheckedUpdateManyWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserActivityScalarWhereInput | UserActivityScalarWhereInput[] | No |
| OR | UserActivityScalarWhereInput[] | No |
| NOT | UserActivityScalarWhereInput | UserActivityScalarWhereInput[] | No |
| id | StringFilter | String | No |
| commentId | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| followId | StringNullableFilter | String | Null | Yes |
| friendshipId | StringNullableFilter | String | Null | Yes |
| postId | StringNullableFilter | String | Null | Yes |
| type | EnumUserActivityTypeFilter | UserActivityType | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatsOnUsersWhereUniqueInput | No |
| update | ChatsOnUsersUpdateWithoutUserInput | ChatsOnUsersUncheckedUpdateWithoutUserInput | No |
| create | ChatsOnUsersCreateWithoutUserInput | ChatsOnUsersUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatsOnUsersWhereUniqueInput | No |
| data | ChatsOnUsersUpdateWithoutUserInput | ChatsOnUsersUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatsOnUsersScalarWhereInput | No |
| data | ChatsOnUsersUpdateManyMutationInput | ChatsOnUsersUncheckedUpdateManyWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatsOnUsersScalarWhereInput | ChatsOnUsersScalarWhereInput[] | No |
| OR | ChatsOnUsersScalarWhereInput[] | No |
| NOT | ChatsOnUsersScalarWhereInput | ChatsOnUsersScalarWhereInput[] | No |
| id | StringFilter | String | No |
| chatId | StringFilter | String | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| update | ChatMessageUpdateWithoutSenderInput | ChatMessageUncheckedUpdateWithoutSenderInput | No |
| create | ChatMessageCreateWithoutSenderInput | ChatMessageUncheckedCreateWithoutSenderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| data | ChatMessageUpdateWithoutSenderInput | ChatMessageUncheckedUpdateWithoutSenderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageScalarWhereInput | No |
| data | ChatMessageUpdateManyMutationInput | ChatMessageUncheckedUpdateManyWithoutChatMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatMessageScalarWhereInput | ChatMessageScalarWhereInput[] | No |
| OR | ChatMessageScalarWhereInput[] | No |
| NOT | ChatMessageScalarWhereInput | ChatMessageScalarWhereInput[] | No |
| id | StringFilter | String | No |
| chatId | StringFilter | String | No |
| content | JsonFilter | No |
| senderId | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| update | CommentUpdateWithoutAuthorInput | CommentUncheckedUpdateWithoutAuthorInput | No |
| create | CommentCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| data | CommentUpdateWithoutAuthorInput | CommentUncheckedUpdateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentScalarWhereInput | No |
| data | CommentUpdateManyMutationInput | CommentUncheckedUpdateManyWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| OR | CommentScalarWhereInput[] | No |
| NOT | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| id | StringFilter | String | No |
| authorId | StringFilter | String | No |
| content | JsonNullableFilter | No |
| createdAt | DateTimeFilter | DateTime | No |
| parentId | StringNullableFilter | String | Null | Yes |
| postId | StringNullableFilter | String | Null | Yes |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | DesiredSkillsOnUsersWhereUniqueInput | No |
| update | DesiredSkillsOnUsersUpdateWithoutUserInput | DesiredSkillsOnUsersUncheckedUpdateWithoutUserInput | No |
| create | DesiredSkillsOnUsersCreateWithoutUserInput | DesiredSkillsOnUsersUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DesiredSkillsOnUsersWhereUniqueInput | No |
| data | DesiredSkillsOnUsersUpdateWithoutUserInput | DesiredSkillsOnUsersUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DesiredSkillsOnUsersScalarWhereInput | No |
| data | DesiredSkillsOnUsersUpdateManyMutationInput | DesiredSkillsOnUsersUncheckedUpdateManyWithoutDesiredSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | DesiredSkillsOnUsersScalarWhereInput | DesiredSkillsOnUsersScalarWhereInput[] | No |
| OR | DesiredSkillsOnUsersScalarWhereInput[] | No |
| NOT | DesiredSkillsOnUsersScalarWhereInput | DesiredSkillsOnUsersScalarWhereInput[] | No |
| id | StringFilter | String | No |
| skillId | StringFilter | String | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ExperienceWhereUniqueInput | No |
| update | ExperienceUpdateWithoutUserInput | ExperienceUncheckedUpdateWithoutUserInput | No |
| create | ExperienceCreateWithoutUserInput | ExperienceUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ExperienceWhereUniqueInput | No |
| data | ExperienceUpdateWithoutUserInput | ExperienceUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ExperienceScalarWhereInput | No |
| data | ExperienceUpdateManyMutationInput | ExperienceUncheckedUpdateManyWithoutExperiencesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ExperienceScalarWhereInput | ExperienceScalarWhereInput[] | No |
| OR | ExperienceScalarWhereInput[] | No |
| NOT | ExperienceScalarWhereInput | ExperienceScalarWhereInput[] | No |
| id | StringFilter | String | No |
| endDate | DateTimeNullableFilter | DateTime | Null | Yes |
| highlights | StringNullableListFilter | No |
| location | StringNullableFilter | String | Null | Yes |
| organizationName | StringFilter | String | No |
| positionName | StringFilter | String | No |
| startDate | DateTimeFilter | DateTime | No |
| type | EnumExperienceTypeNullableFilter | ExperienceType | Null | Yes |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowUserWhereUniqueInput | No |
| update | FollowUserUpdateWithoutFollowingInput | FollowUserUncheckedUpdateWithoutFollowingInput | No |
| create | FollowUserCreateWithoutFollowingInput | FollowUserUncheckedCreateWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowUserWhereUniqueInput | No |
| data | FollowUserUpdateWithoutFollowingInput | FollowUserUncheckedUpdateWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowUserScalarWhereInput | No |
| data | FollowUserUpdateManyMutationInput | FollowUserUncheckedUpdateManyWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FollowUserScalarWhereInput | FollowUserScalarWhereInput[] | No |
| OR | FollowUserScalarWhereInput[] | No |
| NOT | FollowUserScalarWhereInput | FollowUserScalarWhereInput[] | No |
| id | StringFilter | String | No |
| followId | StringFilter | String | No |
| followerId | StringFilter | String | No |
| followingId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowSkillWhereUniqueInput | No |
| update | FollowSkillUpdateWithoutFollowerInput | FollowSkillUncheckedUpdateWithoutFollowerInput | No |
| create | FollowSkillCreateWithoutFollowerInput | FollowSkillUncheckedCreateWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowSkillWhereUniqueInput | No |
| data | FollowSkillUpdateWithoutFollowerInput | FollowSkillUncheckedUpdateWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowSkillScalarWhereInput | No |
| data | FollowSkillUpdateManyMutationInput | FollowSkillUncheckedUpdateManyWithoutFollowingSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FollowSkillScalarWhereInput | FollowSkillScalarWhereInput[] | No |
| OR | FollowSkillScalarWhereInput[] | No |
| NOT | FollowSkillScalarWhereInput | FollowSkillScalarWhereInput[] | No |
| id | StringFilter | String | No |
| followId | StringFilter | String | No |
| followerId | StringFilter | String | No |
| followingId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowUserWhereUniqueInput | No |
| update | FollowUserUpdateWithoutFollowerInput | FollowUserUncheckedUpdateWithoutFollowerInput | No |
| create | FollowUserCreateWithoutFollowerInput | FollowUserUncheckedCreateWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowUserWhereUniqueInput | No |
| data | FollowUserUpdateWithoutFollowerInput | FollowUserUncheckedUpdateWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowUserScalarWhereInput | No |
| data | FollowUserUpdateManyMutationInput | FollowUserUncheckedUpdateManyWithoutFollowingUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FriendshipWhereUniqueInput | No |
| update | FriendshipUpdateWithoutFriendingInput | FriendshipUncheckedUpdateWithoutFriendingInput | No |
| create | FriendshipCreateWithoutFriendingInput | FriendshipUncheckedCreateWithoutFriendingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FriendshipWhereUniqueInput | No |
| data | FriendshipUpdateWithoutFriendingInput | FriendshipUncheckedUpdateWithoutFriendingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FriendshipScalarWhereInput | No |
| data | FriendshipUpdateManyMutationInput | FriendshipUncheckedUpdateManyWithoutFriendedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FriendshipScalarWhereInput | FriendshipScalarWhereInput[] | No |
| OR | FriendshipScalarWhereInput[] | No |
| NOT | FriendshipScalarWhereInput | FriendshipScalarWhereInput[] | No |
| id | StringFilter | String | No |
| frienderId | StringFilter | String | No |
| friendingId | StringFilter | String | No |
| rejected | BoolFilter | Boolean | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FriendshipWhereUniqueInput | No |
| update | FriendshipUpdateWithoutFrienderInput | FriendshipUncheckedUpdateWithoutFrienderInput | No |
| create | FriendshipCreateWithoutFrienderInput | FriendshipUncheckedCreateWithoutFrienderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FriendshipWhereUniqueInput | No |
| data | FriendshipUpdateWithoutFrienderInput | FriendshipUncheckedUpdateWithoutFrienderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FriendshipScalarWhereInput | No |
| data | FriendshipUpdateManyMutationInput | FriendshipUncheckedUpdateManyWithoutFriendingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationWhereUniqueInput | No |
| update | NotificationUpdateWithoutUserInput | NotificationUncheckedUpdateWithoutUserInput | No |
| create | NotificationCreateWithoutUserInput | NotificationUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationWhereUniqueInput | No |
| data | NotificationUpdateWithoutUserInput | NotificationUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationScalarWhereInput | No |
| data | NotificationUpdateManyMutationInput | NotificationUncheckedUpdateManyWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | NotificationScalarWhereInput | NotificationScalarWhereInput[] | No |
| OR | NotificationScalarWhereInput[] | No |
| NOT | NotificationScalarWhereInput | NotificationScalarWhereInput[] | No |
| id | StringFilter | String | No |
| chatId | StringNullableFilter | String | Null | Yes |
| friendshipId | StringNullableFilter | String | Null | Yes |
| opened | BoolFilter | Boolean | No |
| postId | StringNullableFilter | String | Null | Yes |
| type | EnumNotificationTypeFilter | NotificationType | No |
| updatedAt | DateTimeFilter | DateTime | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| update | PostUpdateWithoutAuthorInput | PostUncheckedUpdateWithoutAuthorInput | No |
| create | PostCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| data | PostUpdateWithoutAuthorInput | PostUncheckedUpdateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostScalarWhereInput | No |
| data | PostUpdateManyMutationInput | PostUncheckedUpdateManyWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PostScalarWhereInput | PostScalarWhereInput[] | No |
| OR | PostScalarWhereInput[] | No |
| NOT | PostScalarWhereInput | PostScalarWhereInput[] | No |
| authorName | StringFilter | String | No |
| content | JsonNullableFilter | No |
| createdAt | DateTimeFilter | DateTime | No |
| description | StringNullableFilter | String | Null | Yes |
| id | StringFilter | String | No |
| publishedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| readTime | IntNullableFilter | Int | Null | Yes |
| title | StringNullableFilter | String | Null | Yes |
| thumbnailUrl | StringNullableFilter | String | Null | Yes |
| updatedAt | DateTimeFilter | DateTime | No |
| urlSlug | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | RepositoryWhereUniqueInput | No |
| update | RepositoryUpdateWithoutUserInput | RepositoryUncheckedUpdateWithoutUserInput | No |
| create | RepositoryCreateWithoutUserInput | RepositoryUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RepositoryWhereUniqueInput | No |
| data | RepositoryUpdateWithoutUserInput | RepositoryUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RepositoryScalarWhereInput | No |
| data | RepositoryUpdateManyMutationInput | RepositoryUncheckedUpdateManyWithoutRepositoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RepositoryScalarWhereInput | RepositoryScalarWhereInput[] | No |
| OR | RepositoryScalarWhereInput[] | No |
| NOT | RepositoryScalarWhereInput | RepositoryScalarWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| owner | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | SessionWhereUniqueInput | No |
| update | SessionUpdateWithoutUserInput | SessionUncheckedUpdateWithoutUserInput | No |
| create | SessionCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SessionWhereUniqueInput | No |
| data | SessionUpdateWithoutUserInput | SessionUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SessionScalarWhereInput | No |
| data | SessionUpdateManyMutationInput | SessionUncheckedUpdateManyWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| OR | SessionScalarWhereInput[] | No |
| NOT | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| expires | DateTimeFilter | DateTime | No |
| id | StringFilter | String | No |
| sessionToken | StringFilter | String | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnUsersWhereUniqueInput | No |
| update | SkillsOnUsersUpdateWithoutUserInput | SkillsOnUsersUncheckedUpdateWithoutUserInput | No |
| create | SkillsOnUsersCreateWithoutUserInput | SkillsOnUsersUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnUsersWhereUniqueInput | No |
| data | SkillsOnUsersUpdateWithoutUserInput | SkillsOnUsersUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnUsersScalarWhereInput | No |
| data | SkillsOnUsersUpdateManyMutationInput | SkillsOnUsersUncheckedUpdateManyWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SkillsOnUsersScalarWhereInput | SkillsOnUsersScalarWhereInput[] | No |
| OR | SkillsOnUsersScalarWhereInput[] | No |
| NOT | SkillsOnUsersScalarWhereInput | SkillsOnUsersScalarWhereInput[] | No |
| id | StringFilter | String | No |
| skillId | StringFilter | String | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentUpvoterWhereUniqueInput | No |
| update | CommentUpvoterUpdateWithoutUserInput | CommentUpvoterUncheckedUpdateWithoutUserInput | No |
| create | CommentUpvoterCreateWithoutUserInput | CommentUpvoterUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentUpvoterWhereUniqueInput | No |
| data | CommentUpvoterUpdateWithoutUserInput | CommentUpvoterUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentUpvoterScalarWhereInput | No |
| data | CommentUpvoterUpdateManyMutationInput | CommentUpvoterUncheckedUpdateManyWithoutUpvotedCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommentUpvoterScalarWhereInput | CommentUpvoterScalarWhereInput[] | No |
| OR | CommentUpvoterScalarWhereInput[] | No |
| NOT | CommentUpvoterScalarWhereInput | CommentUpvoterScalarWhereInput[] | No |
| id | StringFilter | String | No |
| commentId | StringFilter | String | No |
| upvote | BoolFilter | Boolean | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostUpvoterWhereUniqueInput | No |
| update | PostUpvoterUpdateWithoutUserInput | PostUpvoterUncheckedUpdateWithoutUserInput | No |
| create | PostUpvoterCreateWithoutUserInput | PostUpvoterUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostUpvoterWhereUniqueInput | No |
| data | PostUpvoterUpdateWithoutUserInput | PostUpvoterUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostUpvoterScalarWhereInput | No |
| data | PostUpvoterUpdateManyMutationInput | PostUpvoterUncheckedUpdateManyWithoutUpvotedPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PostUpvoterScalarWhereInput | PostUpvoterScalarWhereInput[] | No |
| OR | PostUpvoterScalarWhereInput[] | No |
| NOT | PostUpvoterScalarWhereInput | PostUpvoterScalarWhereInput[] | No |
| id | StringFilter | String | No |
| postId | StringFilter | String | No |
| upvote | BoolFilter | Boolean | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| author | UserCreateNestedOneWithoutCommentsInput | No |
| parent | CommentCreateNestedOneWithoutRepliesInput | No |
| post | PostCreateNestedOneWithoutCommentsInput | No |
| replies | CommentCreateNestedManyWithoutParentInput | No |
| upvoters | CommentUpvoterCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| parentId | String | Null | Yes |
| postId | String | Null | Yes |
| updatedAt | DateTime | No |
| replies | CommentUncheckedCreateNestedManyWithoutParentInput | No |
| upvoters | CommentUpvoterUncheckedCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| create | CommentCreateWithoutActivitiesInput | CommentUncheckedCreateWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| followingSkill | FollowSkillCreateNestedOneWithoutFollowInput | No |
| followingUser | FollowUserCreateNestedOneWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| followingSkill | FollowSkillUncheckedCreateNestedOneWithoutFollowInput | No |
| followingUser | FollowUserUncheckedCreateNestedOneWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowWhereUniqueInput | No |
| create | FollowCreateWithoutActivitiesInput | FollowUncheckedCreateWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| rejected | Boolean | No |
| updatedAt | DateTime | No |
| friender | UserCreateNestedOneWithoutFriendingInput | No |
| friending | UserCreateNestedOneWithoutFriendedByInput | No |
| notifications | NotificationCreateNestedManyWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| frienderId | String | No |
| friendingId | String | No |
| rejected | Boolean | No |
| updatedAt | DateTime | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FriendshipWhereUniqueInput | No |
| create | FriendshipCreateWithoutActivitiesInput | FriendshipUncheckedCreateWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| description | String | Null | Yes |
| id | String | No |
| publishedAt | DateTime | Null | Yes |
| readTime | Int | Null | Yes |
| title | String | Null | Yes |
| thumbnailUrl | String | Null | Yes |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| author | UserCreateNestedOneWithoutPostsInput | No |
| comments | CommentCreateNestedManyWithoutPostInput | No |
| images | PostImageCreateNestedManyWithoutPostInput | No |
| notifications | NotificationCreateNestedManyWithoutPostInput | No |
| skills | SkillsOnPostsCreateNestedManyWithoutPostInput | No |
| upvoters | PostUpvoterCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| description | String | Null | Yes |
| id | String | No |
| publishedAt | DateTime | Null | Yes |
| readTime | Int | Null | Yes |
| title | String | Null | Yes |
| thumbnailUrl | String | Null | Yes |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| comments | CommentUncheckedCreateNestedManyWithoutPostInput | No |
| images | PostImageUncheckedCreateNestedManyWithoutPostInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutPostInput | No |
| skills | SkillsOnPostsUncheckedCreateNestedManyWithoutPostInput | No |
| upvoters | PostUpvoterUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutActivitiesInput | PostUncheckedCreateWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutActivitiesInput | UserUncheckedCreateWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CommentUpdateWithoutActivitiesInput | CommentUncheckedUpdateWithoutActivitiesInput | No |
| create | CommentCreateWithoutActivitiesInput | CommentUncheckedCreateWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutCommentsInput | No |
| parent | CommentUpdateOneWithoutRepliesInput | No |
| post | PostUpdateOneWithoutCommentsInput | No |
| replies | CommentUpdateManyWithoutParentInput | No |
| upvoters | CommentUpvoterUpdateManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| parentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| replies | CommentUncheckedUpdateManyWithoutParentInput | No |
| upvoters | CommentUpvoterUncheckedUpdateManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | FollowUpdateWithoutActivitiesInput | FollowUncheckedUpdateWithoutActivitiesInput | No |
| create | FollowCreateWithoutActivitiesInput | FollowUncheckedCreateWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| followingSkill | FollowSkillUpdateOneWithoutFollowInput | No |
| followingUser | FollowUserUpdateOneWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| followingSkill | FollowSkillUncheckedUpdateOneWithoutFollowInput | No |
| followingUser | FollowUserUncheckedUpdateOneWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | FriendshipUpdateWithoutActivitiesInput | FriendshipUncheckedUpdateWithoutActivitiesInput | No |
| create | FriendshipCreateWithoutActivitiesInput | FriendshipUncheckedCreateWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| rejected | Boolean | BoolFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| friender | UserUpdateOneRequiredWithoutFriendingInput | No |
| friending | UserUpdateOneRequiredWithoutFriendedByInput | No |
| notifications | NotificationUpdateManyWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| frienderId | String | StringFieldUpdateOperationsInput | No |
| friendingId | String | StringFieldUpdateOperationsInput | No |
| rejected | Boolean | BoolFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PostUpdateWithoutActivitiesInput | PostUncheckedUpdateWithoutActivitiesInput | No |
| create | PostCreateWithoutActivitiesInput | PostUncheckedCreateWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| publishedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| readTime | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| thumbnailUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| urlSlug | String | StringFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutPostsInput | No |
| comments | CommentUpdateManyWithoutPostInput | No |
| images | PostImageUpdateManyWithoutPostInput | No |
| notifications | NotificationUpdateManyWithoutPostInput | No |
| skills | SkillsOnPostsUpdateManyWithoutPostInput | No |
| upvoters | PostUpvoterUpdateManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| publishedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| readTime | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| thumbnailUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| urlSlug | String | StringFieldUpdateOperationsInput | No |
| comments | CommentUncheckedUpdateManyWithoutPostInput | No |
| images | PostImageUncheckedUpdateManyWithoutPostInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutPostInput | No |
| skills | SkillsOnPostsUncheckedUpdateManyWithoutPostInput | No |
| upvoters | PostUpvoterUncheckedUpdateManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutActivitiesInput | UserUncheckedUpdateWithoutActivitiesInput | No |
| create | UserCreateWithoutActivitiesInput | UserUncheckedCreateWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| updatedAt | DateTime | No |
| messages | ChatMessageCreateNestedManyWithoutChatInput | No |
| users | ChatsOnUsersCreateNestedManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| updatedAt | DateTime | No |
| messages | ChatMessageUncheckedCreateNestedManyWithoutChatInput | No |
| users | ChatsOnUsersUncheckedCreateNestedManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatWhereUniqueInput | No |
| create | ChatCreateWithoutNotificationsInput | ChatUncheckedCreateWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| rejected | Boolean | No |
| updatedAt | DateTime | No |
| activities | UserActivityCreateNestedManyWithoutFriendshipInput | No |
| friender | UserCreateNestedOneWithoutFriendingInput | No |
| friending | UserCreateNestedOneWithoutFriendedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| frienderId | String | No |
| friendingId | String | No |
| rejected | Boolean | No |
| updatedAt | DateTime | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FriendshipWhereUniqueInput | No |
| create | FriendshipCreateWithoutNotificationsInput | FriendshipUncheckedCreateWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| description | String | Null | Yes |
| id | String | No |
| publishedAt | DateTime | Null | Yes |
| readTime | Int | Null | Yes |
| title | String | Null | Yes |
| thumbnailUrl | String | Null | Yes |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| activities | UserActivityCreateNestedManyWithoutPostInput | No |
| author | UserCreateNestedOneWithoutPostsInput | No |
| comments | CommentCreateNestedManyWithoutPostInput | No |
| images | PostImageCreateNestedManyWithoutPostInput | No |
| skills | SkillsOnPostsCreateNestedManyWithoutPostInput | No |
| upvoters | PostUpvoterCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| description | String | Null | Yes |
| id | String | No |
| publishedAt | DateTime | Null | Yes |
| readTime | Int | Null | Yes |
| title | String | Null | Yes |
| thumbnailUrl | String | Null | Yes |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutPostInput | No |
| comments | CommentUncheckedCreateNestedManyWithoutPostInput | No |
| images | PostImageUncheckedCreateNestedManyWithoutPostInput | No |
| skills | SkillsOnPostsUncheckedCreateNestedManyWithoutPostInput | No |
| upvoters | PostUpvoterUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutNotificationsInput | PostUncheckedCreateWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutNotificationsInput | UserUncheckedCreateWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ChatUpdateWithoutNotificationsInput | ChatUncheckedUpdateWithoutNotificationsInput | No |
| create | ChatCreateWithoutNotificationsInput | ChatUncheckedCreateWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| messages | ChatMessageUpdateManyWithoutChatInput | No |
| users | ChatsOnUsersUpdateManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| messages | ChatMessageUncheckedUpdateManyWithoutChatInput | No |
| users | ChatsOnUsersUncheckedUpdateManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | FriendshipUpdateWithoutNotificationsInput | FriendshipUncheckedUpdateWithoutNotificationsInput | No |
| create | FriendshipCreateWithoutNotificationsInput | FriendshipUncheckedCreateWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| rejected | Boolean | BoolFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutFriendshipInput | No |
| friender | UserUpdateOneRequiredWithoutFriendingInput | No |
| friending | UserUpdateOneRequiredWithoutFriendedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| frienderId | String | StringFieldUpdateOperationsInput | No |
| friendingId | String | StringFieldUpdateOperationsInput | No |
| rejected | Boolean | BoolFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PostUpdateWithoutNotificationsInput | PostUncheckedUpdateWithoutNotificationsInput | No |
| create | PostCreateWithoutNotificationsInput | PostUncheckedCreateWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| publishedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| readTime | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| thumbnailUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| urlSlug | String | StringFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutPostInput | No |
| author | UserUpdateOneRequiredWithoutPostsInput | No |
| comments | CommentUpdateManyWithoutPostInput | No |
| images | PostImageUpdateManyWithoutPostInput | No |
| skills | SkillsOnPostsUpdateManyWithoutPostInput | No |
| upvoters | PostUpvoterUpdateManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| publishedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| readTime | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| thumbnailUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| urlSlug | String | StringFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutPostInput | No |
| comments | CommentUncheckedUpdateManyWithoutPostInput | No |
| images | PostImageUncheckedUpdateManyWithoutPostInput | No |
| skills | SkillsOnPostsUncheckedUpdateManyWithoutPostInput | No |
| upvoters | PostUpvoterUncheckedUpdateManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutNotificationsInput | UserUncheckedUpdateWithoutNotificationsInput | No |
| create | UserCreateWithoutNotificationsInput | UserUncheckedCreateWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| type | UserActivityType | No |
| comment | CommentCreateNestedOneWithoutActivitiesInput | No |
| follow | FollowCreateNestedOneWithoutActivitiesInput | No |
| post | PostCreateNestedOneWithoutActivitiesInput | No |
| user | UserCreateNestedOneWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId | String | Null | Yes |
| createdAt | DateTime | No |
| followId | String | Null | Yes |
| postId | String | Null | Yes |
| type | UserActivityType | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityWhereUniqueInput | No |
| create | UserActivityCreateWithoutFriendshipInput | UserActivityUncheckedCreateWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserActivityCreateManyFriendshipInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutFriendingInput | UserUncheckedCreateWithoutFriendingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutFriendedByInput | UserUncheckedCreateWithoutFriendedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| opened | Boolean | No |
| type | NotificationType | No |
| updatedAt | DateTime | No |
| chat | ChatCreateNestedOneWithoutNotificationsInput | No |
| post | PostCreateNestedOneWithoutNotificationsInput | No |
| user | UserCreateNestedOneWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | Null | Yes |
| opened | Boolean | No |
| postId | String | Null | Yes |
| type | NotificationType | No |
| updatedAt | DateTime | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationWhereUniqueInput | No |
| create | NotificationCreateWithoutFriendshipInput | NotificationUncheckedCreateWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | NotificationCreateManyFriendshipInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityWhereUniqueInput | No |
| update | UserActivityUpdateWithoutFriendshipInput | UserActivityUncheckedUpdateWithoutFriendshipInput | No |
| create | UserActivityCreateWithoutFriendshipInput | UserActivityUncheckedCreateWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityWhereUniqueInput | No |
| data | UserActivityUpdateWithoutFriendshipInput | UserActivityUncheckedUpdateWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityScalarWhereInput | No |
| data | UserActivityUpdateManyMutationInput | UserActivityUncheckedUpdateManyWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutFriendingInput | UserUncheckedUpdateWithoutFriendingInput | No |
| create | UserCreateWithoutFriendingInput | UserUncheckedCreateWithoutFriendingInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutFriendedByInput | UserUncheckedUpdateWithoutFriendedByInput | No |
| create | UserCreateWithoutFriendedByInput | UserUncheckedCreateWithoutFriendedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationWhereUniqueInput | No |
| update | NotificationUpdateWithoutFriendshipInput | NotificationUncheckedUpdateWithoutFriendshipInput | No |
| create | NotificationCreateWithoutFriendshipInput | NotificationUncheckedCreateWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationWhereUniqueInput | No |
| data | NotificationUpdateWithoutFriendshipInput | NotificationUncheckedUpdateWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationScalarWhereInput | No |
| data | NotificationUpdateManyMutationInput | NotificationUncheckedUpdateManyWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| type | UserActivityType | No |
| comment | CommentCreateNestedOneWithoutActivitiesInput | No |
| friendship | FriendshipCreateNestedOneWithoutActivitiesInput | No |
| post | PostCreateNestedOneWithoutActivitiesInput | No |
| user | UserCreateNestedOneWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId | String | Null | Yes |
| createdAt | DateTime | No |
| friendshipId | String | Null | Yes |
| postId | String | Null | Yes |
| type | UserActivityType | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityWhereUniqueInput | No |
| create | UserActivityCreateWithoutFollowInput | UserActivityUncheckedCreateWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserActivityCreateManyFollowInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| follower | UserCreateNestedOneWithoutFollowingSkillInput | No |
| following | SkillCreateNestedOneWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followerId | String | No |
| followingId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowSkillWhereUniqueInput | No |
| create | FollowSkillCreateWithoutFollowInput | FollowSkillUncheckedCreateWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| follower | UserCreateNestedOneWithoutFollowingUserInput | No |
| following | UserCreateNestedOneWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followerId | String | No |
| followingId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowUserWhereUniqueInput | No |
| create | FollowUserCreateWithoutFollowInput | FollowUserUncheckedCreateWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityWhereUniqueInput | No |
| update | UserActivityUpdateWithoutFollowInput | UserActivityUncheckedUpdateWithoutFollowInput | No |
| create | UserActivityCreateWithoutFollowInput | UserActivityUncheckedCreateWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityWhereUniqueInput | No |
| data | UserActivityUpdateWithoutFollowInput | UserActivityUncheckedUpdateWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityScalarWhereInput | No |
| data | UserActivityUpdateManyMutationInput | UserActivityUncheckedUpdateManyWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | FollowSkillUpdateWithoutFollowInput | FollowSkillUncheckedUpdateWithoutFollowInput | No |
| create | FollowSkillCreateWithoutFollowInput | FollowSkillUncheckedCreateWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| follower | UserUpdateOneRequiredWithoutFollowingSkillInput | No |
| following | SkillUpdateOneRequiredWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followerId | String | StringFieldUpdateOperationsInput | No |
| followingId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | FollowUserUpdateWithoutFollowInput | FollowUserUncheckedUpdateWithoutFollowInput | No |
| create | FollowUserCreateWithoutFollowInput | FollowUserUncheckedCreateWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| follower | UserUpdateOneRequiredWithoutFollowingUserInput | No |
| following | UserUpdateOneRequiredWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followerId | String | StringFieldUpdateOperationsInput | No |
| followingId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| activities | UserActivityCreateNestedManyWithoutFollowInput | No |
| followingSkill | FollowSkillCreateNestedOneWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutFollowInput | No |
| followingSkill | FollowSkillUncheckedCreateNestedOneWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowWhereUniqueInput | No |
| create | FollowCreateWithoutFollowingUserInput | FollowUncheckedCreateWithoutFollowingUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutFollowingUserInput | UserUncheckedCreateWithoutFollowingUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutFollowedByInput | UserUncheckedCreateWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | FollowUpdateWithoutFollowingUserInput | FollowUncheckedUpdateWithoutFollowingUserInput | No |
| create | FollowCreateWithoutFollowingUserInput | FollowUncheckedCreateWithoutFollowingUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutFollowInput | No |
| followingSkill | FollowSkillUpdateOneWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutFollowInput | No |
| followingSkill | FollowSkillUncheckedUpdateOneWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutFollowingUserInput | UserUncheckedUpdateWithoutFollowingUserInput | No |
| create | UserCreateWithoutFollowingUserInput | UserUncheckedCreateWithoutFollowingUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutFollowedByInput | UserUncheckedUpdateWithoutFollowedByInput | No |
| create | UserCreateWithoutFollowedByInput | UserUncheckedCreateWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| activities | UserActivityCreateNestedManyWithoutFollowInput | No |
| followingUser | FollowUserCreateNestedOneWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutFollowInput | No |
| followingUser | FollowUserUncheckedCreateNestedOneWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowWhereUniqueInput | No |
| create | FollowCreateWithoutFollowingSkillInput | FollowUncheckedCreateWithoutFollowingSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutFollowingSkillInput | UserUncheckedCreateWithoutFollowingSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| users | SkillsOnUsersCreateNestedManyWithoutSkillInput | No |
| desiringUsers | DesiredSkillsOnUsersCreateNestedManyWithoutSkillInput | No |
| posts | SkillsOnPostsCreateNestedManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesCreateNestedManyWithoutSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| users | SkillsOnUsersUncheckedCreateNestedManyWithoutSkillInput | No |
| desiringUsers | DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutSkillInput | No |
| posts | SkillsOnPostsUncheckedCreateNestedManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesUncheckedCreateNestedManyWithoutSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillWhereUniqueInput | No |
| create | SkillCreateWithoutFollowedByInput | SkillUncheckedCreateWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | FollowUpdateWithoutFollowingSkillInput | FollowUncheckedUpdateWithoutFollowingSkillInput | No |
| create | FollowCreateWithoutFollowingSkillInput | FollowUncheckedCreateWithoutFollowingSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutFollowInput | No |
| followingUser | FollowUserUpdateOneWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutFollowInput | No |
| followingUser | FollowUserUncheckedUpdateOneWithoutFollowInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutFollowingSkillInput | UserUncheckedUpdateWithoutFollowingSkillInput | No |
| create | UserCreateWithoutFollowingSkillInput | UserUncheckedCreateWithoutFollowingSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | SkillUpdateWithoutFollowedByInput | SkillUncheckedUpdateWithoutFollowedByInput | No |
| create | SkillCreateWithoutFollowedByInput | SkillUncheckedCreateWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| owner | String | StringFieldUpdateOperationsInput | No |
| users | SkillsOnUsersUpdateManyWithoutSkillInput | No |
| desiringUsers | DesiredSkillsOnUsersUpdateManyWithoutSkillInput | No |
| posts | SkillsOnPostsUpdateManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesUpdateManyWithoutSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| owner | String | StringFieldUpdateOperationsInput | No |
| users | SkillsOnUsersUncheckedUpdateManyWithoutSkillInput | No |
| desiringUsers | DesiredSkillsOnUsersUncheckedUpdateManyWithoutSkillInput | No |
| posts | SkillsOnPostsUncheckedUpdateManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesUncheckedUpdateManyWithoutSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| content | JsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| sender | UserCreateNestedOneWithoutChatMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| content | JsonNullValueInput | Json | No |
| senderId | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| create | ChatMessageCreateWithoutChatInput | ChatMessageUncheckedCreateWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ChatMessageCreateManyChatInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| opened | Boolean | No |
| type | NotificationType | No |
| updatedAt | DateTime | No |
| friendship | FriendshipCreateNestedOneWithoutNotificationsInput | No |
| post | PostCreateNestedOneWithoutNotificationsInput | No |
| user | UserCreateNestedOneWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| friendshipId | String | Null | Yes |
| opened | Boolean | No |
| postId | String | Null | Yes |
| type | NotificationType | No |
| updatedAt | DateTime | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationWhereUniqueInput | No |
| create | NotificationCreateWithoutChatInput | NotificationUncheckedCreateWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | NotificationCreateManyChatInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user | UserCreateNestedOneWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatsOnUsersWhereUniqueInput | No |
| create | ChatsOnUsersCreateWithoutChatInput | ChatsOnUsersUncheckedCreateWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ChatsOnUsersCreateManyChatInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| update | ChatMessageUpdateWithoutChatInput | ChatMessageUncheckedUpdateWithoutChatInput | No |
| create | ChatMessageCreateWithoutChatInput | ChatMessageUncheckedCreateWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| data | ChatMessageUpdateWithoutChatInput | ChatMessageUncheckedUpdateWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageScalarWhereInput | No |
| data | ChatMessageUpdateManyMutationInput | ChatMessageUncheckedUpdateManyWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationWhereUniqueInput | No |
| update | NotificationUpdateWithoutChatInput | NotificationUncheckedUpdateWithoutChatInput | No |
| create | NotificationCreateWithoutChatInput | NotificationUncheckedCreateWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationWhereUniqueInput | No |
| data | NotificationUpdateWithoutChatInput | NotificationUncheckedUpdateWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationScalarWhereInput | No |
| data | NotificationUpdateManyMutationInput | NotificationUncheckedUpdateManyWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatsOnUsersWhereUniqueInput | No |
| update | ChatsOnUsersUpdateWithoutChatInput | ChatsOnUsersUncheckedUpdateWithoutChatInput | No |
| create | ChatsOnUsersCreateWithoutChatInput | ChatsOnUsersUncheckedCreateWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatsOnUsersWhereUniqueInput | No |
| data | ChatsOnUsersUpdateWithoutChatInput | ChatsOnUsersUncheckedUpdateWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatsOnUsersScalarWhereInput | No |
| data | ChatsOnUsersUpdateManyMutationInput | ChatsOnUsersUncheckedUpdateManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| updatedAt | DateTime | No |
| notifications | NotificationCreateNestedManyWithoutChatInput | No |
| users | ChatsOnUsersCreateNestedManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| updatedAt | DateTime | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutChatInput | No |
| users | ChatsOnUsersUncheckedCreateNestedManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatWhereUniqueInput | No |
| create | ChatCreateWithoutMessagesInput | ChatUncheckedCreateWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutChatMessagesInput | UserUncheckedCreateWithoutChatMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ChatUpdateWithoutMessagesInput | ChatUncheckedUpdateWithoutMessagesInput | No |
| create | ChatCreateWithoutMessagesInput | ChatUncheckedCreateWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| notifications | NotificationUpdateManyWithoutChatInput | No |
| users | ChatsOnUsersUpdateManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutChatInput | No |
| users | ChatsOnUsersUncheckedUpdateManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutChatMessagesInput | UserUncheckedUpdateWithoutChatMessagesInput | No |
| create | UserCreateWithoutChatMessagesInput | UserUncheckedCreateWithoutChatMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| updatedAt | DateTime | No |
| messages | ChatMessageCreateNestedManyWithoutChatInput | No |
| notifications | NotificationCreateNestedManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| updatedAt | DateTime | No |
| messages | ChatMessageUncheckedCreateNestedManyWithoutChatInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatWhereUniqueInput | No |
| create | ChatCreateWithoutUsersInput | ChatUncheckedCreateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ChatUpdateWithoutUsersInput | ChatUncheckedUpdateWithoutUsersInput | No |
| create | ChatCreateWithoutUsersInput | ChatUncheckedCreateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| messages | ChatMessageUpdateManyWithoutChatInput | No |
| notifications | NotificationUpdateManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| messages | ChatMessageUncheckedUpdateManyWithoutChatInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutChatsInput | UserUncheckedUpdateWithoutChatsInput | No |
| create | UserCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| type | UserActivityType | No |
| comment | CommentCreateNestedOneWithoutActivitiesInput | No |
| follow | FollowCreateNestedOneWithoutActivitiesInput | No |
| friendship | FriendshipCreateNestedOneWithoutActivitiesInput | No |
| user | UserCreateNestedOneWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId | String | Null | Yes |
| createdAt | DateTime | No |
| followId | String | Null | Yes |
| friendshipId | String | Null | Yes |
| type | UserActivityType | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityWhereUniqueInput | No |
| create | UserActivityCreateWithoutPostInput | UserActivityUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserActivityCreateManyPostInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutPostsInput | UserUncheckedCreateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| activities | UserActivityCreateNestedManyWithoutCommentInput | No |
| author | UserCreateNestedOneWithoutCommentsInput | No |
| parent | CommentCreateNestedOneWithoutRepliesInput | No |
| replies | CommentCreateNestedManyWithoutParentInput | No |
| upvoters | CommentUpvoterCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| parentId | String | Null | Yes |
| updatedAt | DateTime | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutCommentInput | No |
| replies | CommentUncheckedCreateNestedManyWithoutParentInput | No |
| upvoters | CommentUpvoterUncheckedCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| create | CommentCreateWithoutPostInput | CommentUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CommentCreateManyPostInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| url | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| url | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostImageWhereUniqueInput | No |
| create | PostImageCreateWithoutPostInput | PostImageUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PostImageCreateManyPostInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| opened | Boolean | No |
| type | NotificationType | No |
| updatedAt | DateTime | No |
| chat | ChatCreateNestedOneWithoutNotificationsInput | No |
| friendship | FriendshipCreateNestedOneWithoutNotificationsInput | No |
| user | UserCreateNestedOneWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | Null | Yes |
| friendshipId | String | Null | Yes |
| opened | Boolean | No |
| type | NotificationType | No |
| updatedAt | DateTime | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationWhereUniqueInput | No |
| create | NotificationCreateWithoutPostInput | NotificationUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | NotificationCreateManyPostInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skill | SkillCreateNestedOneWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnPostsWhereUniqueInput | No |
| create | SkillsOnPostsCreateWithoutPostInput | SkillsOnPostsUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SkillsOnPostsCreateManyPostInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| upvote | Boolean | No |
| user | UserCreateNestedOneWithoutUpvotedPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| upvote | Boolean | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostUpvoterWhereUniqueInput | No |
| create | PostUpvoterCreateWithoutPostInput | PostUpvoterUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PostUpvoterCreateManyPostInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityWhereUniqueInput | No |
| update | UserActivityUpdateWithoutPostInput | UserActivityUncheckedUpdateWithoutPostInput | No |
| create | UserActivityCreateWithoutPostInput | UserActivityUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityWhereUniqueInput | No |
| data | UserActivityUpdateWithoutPostInput | UserActivityUncheckedUpdateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityScalarWhereInput | No |
| data | UserActivityUpdateManyMutationInput | UserActivityUncheckedUpdateManyWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutPostsInput | UserUncheckedUpdateWithoutPostsInput | No |
| create | UserCreateWithoutPostsInput | UserUncheckedCreateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| update | CommentUpdateWithoutPostInput | CommentUncheckedUpdateWithoutPostInput | No |
| create | CommentCreateWithoutPostInput | CommentUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| data | CommentUpdateWithoutPostInput | CommentUncheckedUpdateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentScalarWhereInput | No |
| data | CommentUpdateManyMutationInput | CommentUncheckedUpdateManyWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostImageWhereUniqueInput | No |
| update | PostImageUpdateWithoutPostInput | PostImageUncheckedUpdateWithoutPostInput | No |
| create | PostImageCreateWithoutPostInput | PostImageUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostImageWhereUniqueInput | No |
| data | PostImageUpdateWithoutPostInput | PostImageUncheckedUpdateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostImageScalarWhereInput | No |
| data | PostImageUpdateManyMutationInput | PostImageUncheckedUpdateManyWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PostImageScalarWhereInput | PostImageScalarWhereInput[] | No |
| OR | PostImageScalarWhereInput[] | No |
| NOT | PostImageScalarWhereInput | PostImageScalarWhereInput[] | No |
| id | StringFilter | String | No |
| postId | StringFilter | String | No |
| url | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationWhereUniqueInput | No |
| update | NotificationUpdateWithoutPostInput | NotificationUncheckedUpdateWithoutPostInput | No |
| create | NotificationCreateWithoutPostInput | NotificationUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationWhereUniqueInput | No |
| data | NotificationUpdateWithoutPostInput | NotificationUncheckedUpdateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationScalarWhereInput | No |
| data | NotificationUpdateManyMutationInput | NotificationUncheckedUpdateManyWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnPostsWhereUniqueInput | No |
| update | SkillsOnPostsUpdateWithoutPostInput | SkillsOnPostsUncheckedUpdateWithoutPostInput | No |
| create | SkillsOnPostsCreateWithoutPostInput | SkillsOnPostsUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnPostsWhereUniqueInput | No |
| data | SkillsOnPostsUpdateWithoutPostInput | SkillsOnPostsUncheckedUpdateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnPostsScalarWhereInput | No |
| data | SkillsOnPostsUpdateManyMutationInput | SkillsOnPostsUncheckedUpdateManyWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SkillsOnPostsScalarWhereInput | SkillsOnPostsScalarWhereInput[] | No |
| OR | SkillsOnPostsScalarWhereInput[] | No |
| NOT | SkillsOnPostsScalarWhereInput | SkillsOnPostsScalarWhereInput[] | No |
| id | StringFilter | String | No |
| postId | StringFilter | String | No |
| skillId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostUpvoterWhereUniqueInput | No |
| update | PostUpvoterUpdateWithoutPostInput | PostUpvoterUncheckedUpdateWithoutPostInput | No |
| create | PostUpvoterCreateWithoutPostInput | PostUpvoterUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostUpvoterWhereUniqueInput | No |
| data | PostUpvoterUpdateWithoutPostInput | PostUpvoterUncheckedUpdateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostUpvoterScalarWhereInput | No |
| data | PostUpvoterUpdateManyMutationInput | PostUpvoterUncheckedUpdateManyWithoutUpvotersInput | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| description | String | Null | Yes |
| id | String | No |
| publishedAt | DateTime | Null | Yes |
| readTime | Int | Null | Yes |
| title | String | Null | Yes |
| thumbnailUrl | String | Null | Yes |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| activities | UserActivityCreateNestedManyWithoutPostInput | No |
| author | UserCreateNestedOneWithoutPostsInput | No |
| comments | CommentCreateNestedManyWithoutPostInput | No |
| images | PostImageCreateNestedManyWithoutPostInput | No |
| notifications | NotificationCreateNestedManyWithoutPostInput | No |
| skills | SkillsOnPostsCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| description | String | Null | Yes |
| id | String | No |
| publishedAt | DateTime | Null | Yes |
| readTime | Int | Null | Yes |
| title | String | Null | Yes |
| thumbnailUrl | String | Null | Yes |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutPostInput | No |
| comments | CommentUncheckedCreateNestedManyWithoutPostInput | No |
| images | PostImageUncheckedCreateNestedManyWithoutPostInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutPostInput | No |
| skills | SkillsOnPostsUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutUpvotersInput | PostUncheckedCreateWithoutUpvotersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutUpvotedPostsInput | UserUncheckedCreateWithoutUpvotedPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PostUpdateWithoutUpvotersInput | PostUncheckedUpdateWithoutUpvotersInput | No |
| create | PostCreateWithoutUpvotersInput | PostUncheckedCreateWithoutUpvotersInput | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| publishedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| readTime | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| thumbnailUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| urlSlug | String | StringFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutPostInput | No |
| author | UserUpdateOneRequiredWithoutPostsInput | No |
| comments | CommentUpdateManyWithoutPostInput | No |
| images | PostImageUpdateManyWithoutPostInput | No |
| notifications | NotificationUpdateManyWithoutPostInput | No |
| skills | SkillsOnPostsUpdateManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| publishedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| readTime | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| thumbnailUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| urlSlug | String | StringFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutPostInput | No |
| comments | CommentUncheckedUpdateManyWithoutPostInput | No |
| images | PostImageUncheckedUpdateManyWithoutPostInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutPostInput | No |
| skills | SkillsOnPostsUncheckedUpdateManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutUpvotedPostsInput | UserUncheckedUpdateWithoutUpvotedPostsInput | No |
| create | UserCreateWithoutUpvotedPostsInput | UserUncheckedCreateWithoutUpvotedPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| description | String | Null | Yes |
| id | String | No |
| publishedAt | DateTime | Null | Yes |
| readTime | Int | Null | Yes |
| title | String | Null | Yes |
| thumbnailUrl | String | Null | Yes |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| activities | UserActivityCreateNestedManyWithoutPostInput | No |
| author | UserCreateNestedOneWithoutPostsInput | No |
| comments | CommentCreateNestedManyWithoutPostInput | No |
| notifications | NotificationCreateNestedManyWithoutPostInput | No |
| skills | SkillsOnPostsCreateNestedManyWithoutPostInput | No |
| upvoters | PostUpvoterCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| description | String | Null | Yes |
| id | String | No |
| publishedAt | DateTime | Null | Yes |
| readTime | Int | Null | Yes |
| title | String | Null | Yes |
| thumbnailUrl | String | Null | Yes |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutPostInput | No |
| comments | CommentUncheckedCreateNestedManyWithoutPostInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutPostInput | No |
| skills | SkillsOnPostsUncheckedCreateNestedManyWithoutPostInput | No |
| upvoters | PostUpvoterUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutImagesInput | PostUncheckedCreateWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PostUpdateWithoutImagesInput | PostUncheckedUpdateWithoutImagesInput | No |
| create | PostCreateWithoutImagesInput | PostUncheckedCreateWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| publishedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| readTime | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| thumbnailUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| urlSlug | String | StringFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutPostInput | No |
| author | UserUpdateOneRequiredWithoutPostsInput | No |
| comments | CommentUpdateManyWithoutPostInput | No |
| notifications | NotificationUpdateManyWithoutPostInput | No |
| skills | SkillsOnPostsUpdateManyWithoutPostInput | No |
| upvoters | PostUpvoterUpdateManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| publishedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| readTime | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| thumbnailUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| urlSlug | String | StringFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutPostInput | No |
| comments | CommentUncheckedUpdateManyWithoutPostInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutPostInput | No |
| skills | SkillsOnPostsUncheckedUpdateManyWithoutPostInput | No |
| upvoters | PostUpvoterUncheckedUpdateManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| type | UserActivityType | No |
| follow | FollowCreateNestedOneWithoutActivitiesInput | No |
| friendship | FriendshipCreateNestedOneWithoutActivitiesInput | No |
| post | PostCreateNestedOneWithoutActivitiesInput | No |
| user | UserCreateNestedOneWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| followId | String | Null | Yes |
| friendshipId | String | Null | Yes |
| postId | String | Null | Yes |
| type | UserActivityType | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityWhereUniqueInput | No |
| create | UserActivityCreateWithoutCommentInput | UserActivityUncheckedCreateWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserActivityCreateManyCommentInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| activities | UserActivityCreateNestedManyWithoutCommentInput | No |
| author | UserCreateNestedOneWithoutCommentsInput | No |
| parent | CommentCreateNestedOneWithoutRepliesInput | No |
| post | PostCreateNestedOneWithoutCommentsInput | No |
| upvoters | CommentUpvoterCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| parentId | String | Null | Yes |
| postId | String | Null | Yes |
| updatedAt | DateTime | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutCommentInput | No |
| upvoters | CommentUpvoterUncheckedCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| create | CommentCreateWithoutRepliesInput | CommentUncheckedCreateWithoutRepliesInput | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| description | String | Null | Yes |
| id | String | No |
| publishedAt | DateTime | Null | Yes |
| readTime | Int | Null | Yes |
| title | String | Null | Yes |
| thumbnailUrl | String | Null | Yes |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| activities | UserActivityCreateNestedManyWithoutPostInput | No |
| author | UserCreateNestedOneWithoutPostsInput | No |
| images | PostImageCreateNestedManyWithoutPostInput | No |
| notifications | NotificationCreateNestedManyWithoutPostInput | No |
| skills | SkillsOnPostsCreateNestedManyWithoutPostInput | No |
| upvoters | PostUpvoterCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| description | String | Null | Yes |
| id | String | No |
| publishedAt | DateTime | Null | Yes |
| readTime | Int | Null | Yes |
| title | String | Null | Yes |
| thumbnailUrl | String | Null | Yes |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutPostInput | No |
| images | PostImageUncheckedCreateNestedManyWithoutPostInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutPostInput | No |
| skills | SkillsOnPostsUncheckedCreateNestedManyWithoutPostInput | No |
| upvoters | PostUpvoterUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutCommentsInput | PostUncheckedCreateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| activities | UserActivityCreateNestedManyWithoutCommentInput | No |
| author | UserCreateNestedOneWithoutCommentsInput | No |
| post | PostCreateNestedOneWithoutCommentsInput | No |
| replies | CommentCreateNestedManyWithoutParentInput | No |
| upvoters | CommentUpvoterCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| postId | String | Null | Yes |
| updatedAt | DateTime | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutCommentInput | No |
| replies | CommentUncheckedCreateNestedManyWithoutParentInput | No |
| upvoters | CommentUpvoterUncheckedCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| create | CommentCreateWithoutParentInput | CommentUncheckedCreateWithoutParentInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CommentCreateManyParentInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| upvote | Boolean | No |
| user | UserCreateNestedOneWithoutUpvotedCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| upvote | Boolean | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentUpvoterWhereUniqueInput | No |
| create | CommentUpvoterCreateWithoutCommentInput | CommentUpvoterUncheckedCreateWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CommentUpvoterCreateManyCommentInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityWhereUniqueInput | No |
| update | UserActivityUpdateWithoutCommentInput | UserActivityUncheckedUpdateWithoutCommentInput | No |
| create | UserActivityCreateWithoutCommentInput | UserActivityUncheckedCreateWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityWhereUniqueInput | No |
| data | UserActivityUpdateWithoutCommentInput | UserActivityUncheckedUpdateWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserActivityScalarWhereInput | No |
| data | UserActivityUpdateManyMutationInput | UserActivityUncheckedUpdateManyWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutCommentsInput | UserUncheckedUpdateWithoutCommentsInput | No |
| create | UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CommentUpdateWithoutRepliesInput | CommentUncheckedUpdateWithoutRepliesInput | No |
| create | CommentCreateWithoutRepliesInput | CommentUncheckedCreateWithoutRepliesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutCommentInput | No |
| author | UserUpdateOneRequiredWithoutCommentsInput | No |
| parent | CommentUpdateOneWithoutRepliesInput | No |
| post | PostUpdateOneWithoutCommentsInput | No |
| upvoters | CommentUpvoterUpdateManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| parentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutCommentInput | No |
| upvoters | CommentUpvoterUncheckedUpdateManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PostUpdateWithoutCommentsInput | PostUncheckedUpdateWithoutCommentsInput | No |
| create | PostCreateWithoutCommentsInput | PostUncheckedCreateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| publishedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| readTime | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| thumbnailUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| urlSlug | String | StringFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutPostInput | No |
| author | UserUpdateOneRequiredWithoutPostsInput | No |
| images | PostImageUpdateManyWithoutPostInput | No |
| notifications | NotificationUpdateManyWithoutPostInput | No |
| skills | SkillsOnPostsUpdateManyWithoutPostInput | No |
| upvoters | PostUpvoterUpdateManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| publishedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| readTime | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| thumbnailUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| urlSlug | String | StringFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutPostInput | No |
| images | PostImageUncheckedUpdateManyWithoutPostInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutPostInput | No |
| skills | SkillsOnPostsUncheckedUpdateManyWithoutPostInput | No |
| upvoters | PostUpvoterUncheckedUpdateManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| update | CommentUpdateWithoutParentInput | CommentUncheckedUpdateWithoutParentInput | No |
| create | CommentCreateWithoutParentInput | CommentUncheckedCreateWithoutParentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| data | CommentUpdateWithoutParentInput | CommentUncheckedUpdateWithoutParentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentScalarWhereInput | No |
| data | CommentUpdateManyMutationInput | CommentUncheckedUpdateManyWithoutRepliesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentUpvoterWhereUniqueInput | No |
| update | CommentUpvoterUpdateWithoutCommentInput | CommentUpvoterUncheckedUpdateWithoutCommentInput | No |
| create | CommentUpvoterCreateWithoutCommentInput | CommentUpvoterUncheckedCreateWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentUpvoterWhereUniqueInput | No |
| data | CommentUpvoterUpdateWithoutCommentInput | CommentUpvoterUncheckedUpdateWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentUpvoterScalarWhereInput | No |
| data | CommentUpvoterUpdateManyMutationInput | CommentUpvoterUncheckedUpdateManyWithoutUpvotersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| activities | UserActivityCreateNestedManyWithoutCommentInput | No |
| author | UserCreateNestedOneWithoutCommentsInput | No |
| parent | CommentCreateNestedOneWithoutRepliesInput | No |
| post | PostCreateNestedOneWithoutCommentsInput | No |
| replies | CommentCreateNestedManyWithoutParentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| parentId | String | Null | Yes |
| postId | String | Null | Yes |
| updatedAt | DateTime | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutCommentInput | No |
| replies | CommentUncheckedCreateNestedManyWithoutParentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| create | CommentCreateWithoutUpvotersInput | CommentUncheckedCreateWithoutUpvotersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutUpvotedCommentsInput | UserUncheckedCreateWithoutUpvotedCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CommentUpdateWithoutUpvotersInput | CommentUncheckedUpdateWithoutUpvotersInput | No |
| create | CommentCreateWithoutUpvotersInput | CommentUncheckedCreateWithoutUpvotersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutCommentInput | No |
| author | UserUpdateOneRequiredWithoutCommentsInput | No |
| parent | CommentUpdateOneWithoutRepliesInput | No |
| post | PostUpdateOneWithoutCommentsInput | No |
| replies | CommentUpdateManyWithoutParentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| parentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutCommentInput | No |
| replies | CommentUncheckedUpdateManyWithoutParentInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutUpvotedCommentsInput | UserUncheckedUpdateWithoutUpvotedCommentsInput | No |
| create | UserCreateWithoutUpvotedCommentsInput | UserUncheckedCreateWithoutUpvotedCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user | UserCreateNestedOneWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnUsersWhereUniqueInput | No |
| create | SkillsOnUsersCreateWithoutSkillInput | SkillsOnUsersUncheckedCreateWithoutSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SkillsOnUsersCreateManySkillInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user | UserCreateNestedOneWithoutDesiredSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | DesiredSkillsOnUsersWhereUniqueInput | No |
| create | DesiredSkillsOnUsersCreateWithoutSkillInput | DesiredSkillsOnUsersUncheckedCreateWithoutSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | DesiredSkillsOnUsersCreateManySkillInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| post | PostCreateNestedOneWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnPostsWhereUniqueInput | No |
| create | SkillsOnPostsCreateWithoutSkillInput | SkillsOnPostsUncheckedCreateWithoutSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SkillsOnPostsCreateManySkillInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| repository | RepositoryCreateNestedOneWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| repositoryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnRepositoriesWhereUniqueInput | No |
| create | SkillsOnRepositoriesCreateWithoutSkillInput | SkillsOnRepositoriesUncheckedCreateWithoutSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SkillsOnRepositoriesCreateManySkillInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| follow | FollowCreateNestedOneWithoutFollowingSkillInput | No |
| follower | UserCreateNestedOneWithoutFollowingSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followId | String | No |
| followerId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowSkillWhereUniqueInput | No |
| create | FollowSkillCreateWithoutFollowingInput | FollowSkillUncheckedCreateWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FollowSkillCreateManyFollowingInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnUsersWhereUniqueInput | No |
| update | SkillsOnUsersUpdateWithoutSkillInput | SkillsOnUsersUncheckedUpdateWithoutSkillInput | No |
| create | SkillsOnUsersCreateWithoutSkillInput | SkillsOnUsersUncheckedCreateWithoutSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnUsersWhereUniqueInput | No |
| data | SkillsOnUsersUpdateWithoutSkillInput | SkillsOnUsersUncheckedUpdateWithoutSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnUsersScalarWhereInput | No |
| data | SkillsOnUsersUpdateManyMutationInput | SkillsOnUsersUncheckedUpdateManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DesiredSkillsOnUsersWhereUniqueInput | No |
| data | DesiredSkillsOnUsersUpdateWithoutSkillInput | DesiredSkillsOnUsersUncheckedUpdateWithoutSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DesiredSkillsOnUsersScalarWhereInput | No |
| data | DesiredSkillsOnUsersUpdateManyMutationInput | DesiredSkillsOnUsersUncheckedUpdateManyWithoutDesiringUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnPostsWhereUniqueInput | No |
| update | SkillsOnPostsUpdateWithoutSkillInput | SkillsOnPostsUncheckedUpdateWithoutSkillInput | No |
| create | SkillsOnPostsCreateWithoutSkillInput | SkillsOnPostsUncheckedCreateWithoutSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnPostsWhereUniqueInput | No |
| data | SkillsOnPostsUpdateWithoutSkillInput | SkillsOnPostsUncheckedUpdateWithoutSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnPostsScalarWhereInput | No |
| data | SkillsOnPostsUpdateManyMutationInput | SkillsOnPostsUncheckedUpdateManyWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnRepositoriesWhereUniqueInput | No |
| data | SkillsOnRepositoriesUpdateWithoutSkillInput | SkillsOnRepositoriesUncheckedUpdateWithoutSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnRepositoriesScalarWhereInput | No |
| data | SkillsOnRepositoriesUpdateManyMutationInput | SkillsOnRepositoriesUncheckedUpdateManyWithoutRepositoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SkillsOnRepositoriesScalarWhereInput | SkillsOnRepositoriesScalarWhereInput[] | No |
| OR | SkillsOnRepositoriesScalarWhereInput[] | No |
| NOT | SkillsOnRepositoriesScalarWhereInput | SkillsOnRepositoriesScalarWhereInput[] | No |
| id | StringFilter | String | No |
| skillId | StringFilter | String | No |
| repositoryId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowSkillWhereUniqueInput | No |
| update | FollowSkillUpdateWithoutFollowingInput | FollowSkillUncheckedUpdateWithoutFollowingInput | No |
| create | FollowSkillCreateWithoutFollowingInput | FollowSkillUncheckedCreateWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowSkillWhereUniqueInput | No |
| data | FollowSkillUpdateWithoutFollowingInput | FollowSkillUncheckedUpdateWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowSkillScalarWhereInput | No |
| data | FollowSkillUpdateManyMutationInput | FollowSkillUncheckedUpdateManyWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| description | String | Null | Yes |
| id | String | No |
| publishedAt | DateTime | Null | Yes |
| readTime | Int | Null | Yes |
| title | String | Null | Yes |
| thumbnailUrl | String | Null | Yes |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| activities | UserActivityCreateNestedManyWithoutPostInput | No |
| author | UserCreateNestedOneWithoutPostsInput | No |
| comments | CommentCreateNestedManyWithoutPostInput | No |
| images | PostImageCreateNestedManyWithoutPostInput | No |
| notifications | NotificationCreateNestedManyWithoutPostInput | No |
| upvoters | PostUpvoterCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| description | String | Null | Yes |
| id | String | No |
| publishedAt | DateTime | Null | Yes |
| readTime | Int | Null | Yes |
| title | String | Null | Yes |
| thumbnailUrl | String | Null | Yes |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| activities | UserActivityUncheckedCreateNestedManyWithoutPostInput | No |
| comments | CommentUncheckedCreateNestedManyWithoutPostInput | No |
| images | PostImageUncheckedCreateNestedManyWithoutPostInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutPostInput | No |
| upvoters | PostUpvoterUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutSkillsInput | PostUncheckedCreateWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| users | SkillsOnUsersCreateNestedManyWithoutSkillInput | No |
| desiringUsers | DesiredSkillsOnUsersCreateNestedManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesCreateNestedManyWithoutSkillInput | No |
| followedBy | FollowSkillCreateNestedManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| users | SkillsOnUsersUncheckedCreateNestedManyWithoutSkillInput | No |
| desiringUsers | DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesUncheckedCreateNestedManyWithoutSkillInput | No |
| followedBy | FollowSkillUncheckedCreateNestedManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillWhereUniqueInput | No |
| create | SkillCreateWithoutPostsInput | SkillUncheckedCreateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PostUpdateWithoutSkillsInput | PostUncheckedUpdateWithoutSkillsInput | No |
| create | PostCreateWithoutSkillsInput | PostUncheckedCreateWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| publishedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| readTime | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| thumbnailUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| urlSlug | String | StringFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutPostInput | No |
| author | UserUpdateOneRequiredWithoutPostsInput | No |
| comments | CommentUpdateManyWithoutPostInput | No |
| images | PostImageUpdateManyWithoutPostInput | No |
| notifications | NotificationUpdateManyWithoutPostInput | No |
| upvoters | PostUpvoterUpdateManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| publishedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| readTime | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| thumbnailUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| urlSlug | String | StringFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutPostInput | No |
| comments | CommentUncheckedUpdateManyWithoutPostInput | No |
| images | PostImageUncheckedUpdateManyWithoutPostInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutPostInput | No |
| upvoters | PostUpvoterUncheckedUpdateManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | SkillUpdateWithoutPostsInput | SkillUncheckedUpdateWithoutPostsInput | No |
| create | SkillCreateWithoutPostsInput | SkillUncheckedCreateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| owner | String | StringFieldUpdateOperationsInput | No |
| users | SkillsOnUsersUpdateManyWithoutSkillInput | No |
| desiringUsers | DesiredSkillsOnUsersUpdateManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesUpdateManyWithoutSkillInput | No |
| followedBy | FollowSkillUpdateManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| owner | String | StringFieldUpdateOperationsInput | No |
| users | SkillsOnUsersUncheckedUpdateManyWithoutSkillInput | No |
| desiringUsers | DesiredSkillsOnUsersUncheckedUpdateManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesUncheckedUpdateManyWithoutSkillInput | No |
| followedBy | FollowSkillUncheckedUpdateManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| desiringUsers | DesiredSkillsOnUsersCreateNestedManyWithoutSkillInput | No |
| posts | SkillsOnPostsCreateNestedManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesCreateNestedManyWithoutSkillInput | No |
| followedBy | FollowSkillCreateNestedManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| desiringUsers | DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutSkillInput | No |
| posts | SkillsOnPostsUncheckedCreateNestedManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesUncheckedCreateNestedManyWithoutSkillInput | No |
| followedBy | FollowSkillUncheckedCreateNestedManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillWhereUniqueInput | No |
| create | SkillCreateWithoutUsersInput | SkillUncheckedCreateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutSkillsInput | UserUncheckedCreateWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | SkillUpdateWithoutUsersInput | SkillUncheckedUpdateWithoutUsersInput | No |
| create | SkillCreateWithoutUsersInput | SkillUncheckedCreateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| owner | String | StringFieldUpdateOperationsInput | No |
| desiringUsers | DesiredSkillsOnUsersUpdateManyWithoutSkillInput | No |
| posts | SkillsOnPostsUpdateManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesUpdateManyWithoutSkillInput | No |
| followedBy | FollowSkillUpdateManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| owner | String | StringFieldUpdateOperationsInput | No |
| desiringUsers | DesiredSkillsOnUsersUncheckedUpdateManyWithoutSkillInput | No |
| posts | SkillsOnPostsUncheckedUpdateManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesUncheckedUpdateManyWithoutSkillInput | No |
| followedBy | FollowSkillUncheckedUpdateManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutSkillsInput | UserUncheckedUpdateWithoutSkillsInput | No |
| create | UserCreateWithoutSkillsInput | UserUncheckedCreateWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| users | SkillsOnUsersCreateNestedManyWithoutSkillInput | No |
| posts | SkillsOnPostsCreateNestedManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesCreateNestedManyWithoutSkillInput | No |
| followedBy | FollowSkillCreateNestedManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| users | SkillsOnUsersUncheckedCreateNestedManyWithoutSkillInput | No |
| posts | SkillsOnPostsUncheckedCreateNestedManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesUncheckedCreateNestedManyWithoutSkillInput | No |
| followedBy | FollowSkillUncheckedCreateNestedManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillWhereUniqueInput | No |
| create | SkillCreateWithoutDesiringUsersInput | SkillUncheckedCreateWithoutDesiringUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutDesiredSkillsInput | UserUncheckedCreateWithoutDesiredSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | SkillUpdateWithoutDesiringUsersInput | SkillUncheckedUpdateWithoutDesiringUsersInput | No |
| create | SkillCreateWithoutDesiringUsersInput | SkillUncheckedCreateWithoutDesiringUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| owner | String | StringFieldUpdateOperationsInput | No |
| users | SkillsOnUsersUpdateManyWithoutSkillInput | No |
| posts | SkillsOnPostsUpdateManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesUpdateManyWithoutSkillInput | No |
| followedBy | FollowSkillUpdateManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| owner | String | StringFieldUpdateOperationsInput | No |
| users | SkillsOnUsersUncheckedUpdateManyWithoutSkillInput | No |
| posts | SkillsOnPostsUncheckedUpdateManyWithoutSkillInput | No |
| repositories | SkillsOnRepositoriesUncheckedUpdateManyWithoutSkillInput | No |
| followedBy | FollowSkillUncheckedUpdateManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutDesiredSkillsInput | UserUncheckedUpdateWithoutDesiredSkillsInput | No |
| create | UserCreateWithoutDesiredSkillsInput | UserUncheckedCreateWithoutDesiredSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skill | SkillCreateNestedOneWithoutRepositoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnRepositoriesWhereUniqueInput | No |
| create | SkillsOnRepositoriesCreateWithoutRepositoryInput | SkillsOnRepositoriesUncheckedCreateWithoutRepositoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SkillsOnRepositoriesCreateManyRepositoryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutRepositoriesInput | UserUncheckedCreateWithoutRepositoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnRepositoriesWhereUniqueInput | No |
| data | SkillsOnRepositoriesUpdateWithoutRepositoryInput | SkillsOnRepositoriesUncheckedUpdateWithoutRepositoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillsOnRepositoriesScalarWhereInput | No |
| data | SkillsOnRepositoriesUpdateManyMutationInput | SkillsOnRepositoriesUncheckedUpdateManyWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutRepositoriesInput | UserUncheckedUpdateWithoutRepositoriesInput | No |
| create | UserCreateWithoutRepositoriesInput | UserUncheckedCreateWithoutRepositoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| users | SkillsOnUsersCreateNestedManyWithoutSkillInput | No |
| desiringUsers | DesiredSkillsOnUsersCreateNestedManyWithoutSkillInput | No |
| posts | SkillsOnPostsCreateNestedManyWithoutSkillInput | No |
| followedBy | FollowSkillCreateNestedManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| users | SkillsOnUsersUncheckedCreateNestedManyWithoutSkillInput | No |
| desiringUsers | DesiredSkillsOnUsersUncheckedCreateNestedManyWithoutSkillInput | No |
| posts | SkillsOnPostsUncheckedCreateNestedManyWithoutSkillInput | No |
| followedBy | FollowSkillUncheckedCreateNestedManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SkillWhereUniqueInput | No |
| create | SkillCreateWithoutRepositoriesInput | SkillUncheckedCreateWithoutRepositoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| user | UserCreateNestedOneWithoutRepositoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | RepositoryWhereUniqueInput | No |
| create | RepositoryCreateWithoutSkillsInput | RepositoryUncheckedCreateWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | SkillUpdateWithoutRepositoriesInput | SkillUncheckedUpdateWithoutRepositoriesInput | No |
| create | SkillCreateWithoutRepositoriesInput | SkillUncheckedCreateWithoutRepositoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| owner | String | StringFieldUpdateOperationsInput | No |
| users | SkillsOnUsersUpdateManyWithoutSkillInput | No |
| desiringUsers | DesiredSkillsOnUsersUpdateManyWithoutSkillInput | No |
| posts | SkillsOnPostsUpdateManyWithoutSkillInput | No |
| followedBy | FollowSkillUpdateManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| owner | String | StringFieldUpdateOperationsInput | No |
| users | SkillsOnUsersUncheckedUpdateManyWithoutSkillInput | No |
| desiringUsers | DesiredSkillsOnUsersUncheckedUpdateManyWithoutSkillInput | No |
| posts | SkillsOnPostsUncheckedUpdateManyWithoutSkillInput | No |
| followedBy | FollowSkillUncheckedUpdateManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RepositoryUpdateWithoutSkillsInput | RepositoryUncheckedUpdateWithoutSkillsInput | No |
| create | RepositoryCreateWithoutSkillsInput | RepositoryUncheckedCreateWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutRepositoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| owner | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| endDate | DateTime | Null | Yes |
| location | String | Null | Yes |
| positionName | String | No |
| startDate | DateTime | No |
| type | ExperienceType | Null | Yes |
| highlights | ExperienceCreatehighlightsInput | String | No |
| user | UserCreateNestedOneWithoutExperiencesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| endDate | DateTime | Null | Yes |
| location | String | Null | Yes |
| positionName | String | No |
| startDate | DateTime | No |
| type | ExperienceType | Null | Yes |
| userId | String | No |
| highlights | ExperienceCreatehighlightsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ExperienceWhereUniqueInput | No |
| create | ExperienceCreateWithoutOrganizationInput | ExperienceUncheckedCreateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ExperienceCreateManyOrganizationInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | ExperienceWhereUniqueInput | No |
| update | ExperienceUpdateWithoutOrganizationInput | ExperienceUncheckedUpdateWithoutOrganizationInput | No |
| create | ExperienceCreateWithoutOrganizationInput | ExperienceUncheckedCreateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ExperienceWhereUniqueInput | No |
| data | ExperienceUpdateWithoutOrganizationInput | ExperienceUncheckedUpdateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ExperienceScalarWhereInput | No |
| data | ExperienceUpdateManyMutationInput | ExperienceUncheckedUpdateManyWithoutExperiencesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutExperiencesInput | OrganizationUncheckedCreateWithoutExperiencesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutExperiencesInput | UserUncheckedCreateWithoutExperiencesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrganizationUpdateWithoutExperiencesInput | OrganizationUncheckedUpdateWithoutExperiencesInput | No |
| create | OrganizationCreateWithoutExperiencesInput | OrganizationUncheckedCreateWithoutExperiencesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutExperiencesInput | UserUncheckedUpdateWithoutExperiencesInput | No |
| create | UserCreateWithoutExperiencesInput | UserUncheckedCreateWithoutExperiencesInput | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | String | Null | Yes |
| expires_at | Int | Null | Yes |
| id | String | No |
| id_token | String | Null | Yes |
| provider | String | No |
| providerAccountId | String | No |
| oauth_token | String | Null | Yes |
| oauth_token_secret | String | Null | Yes |
| refresh_token | String | Null | Yes |
| scope | String | Null | Yes |
| session_state | String | Null | Yes |
| token_type | String | Null | Yes |
| type | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId | String | Null | Yes |
| createdAt | DateTime | No |
| followId | String | Null | Yes |
| friendshipId | String | Null | Yes |
| postId | String | Null | Yes |
| type | UserActivityType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | No |
| content | JsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| parentId | String | Null | Yes |
| postId | String | Null | Yes |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| endDate | DateTime | Null | Yes |
| location | String | Null | Yes |
| organizationName | String | No |
| positionName | String | No |
| startDate | DateTime | No |
| type | ExperienceType | Null | Yes |
| highlights | ExperienceCreateManyhighlightsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followId | String | No |
| followerId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followId | String | No |
| followingId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followId | String | No |
| followingId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| frienderId | String | No |
| rejected | Boolean | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| friendingId | String | No |
| rejected | Boolean | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | Null | Yes |
| friendshipId | String | Null | Yes |
| opened | Boolean | No |
| postId | String | Null | Yes |
| type | NotificationType | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| description | String | Null | Yes |
| id | String | No |
| publishedAt | DateTime | Null | Yes |
| readTime | Int | Null | Yes |
| title | String | Null | Yes |
| thumbnailUrl | String | Null | Yes |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | No |
| id | String | No |
| sessionToken | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId | String | No |
| upvote | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| upvote | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| oauth_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| oauth_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| oauth_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| type | UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput | No |
| comment | CommentUpdateOneWithoutActivitiesInput | No |
| follow | FollowUpdateOneWithoutActivitiesInput | No |
| friendship | FriendshipUpdateOneWithoutActivitiesInput | No |
| post | PostUpdateOneWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| followId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| friendshipId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| followId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| friendshipId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| chat | ChatUpdateOneRequiredWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| chatId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| chatId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| content | JsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| chat | ChatUpdateOneRequiredWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| chatId | String | StringFieldUpdateOperationsInput | No |
| content | JsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| chatId | String | StringFieldUpdateOperationsInput | No |
| content | JsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutCommentInput | No |
| parent | CommentUpdateOneWithoutRepliesInput | No |
| post | PostUpdateOneWithoutCommentsInput | No |
| replies | CommentUpdateManyWithoutParentInput | No |
| upvoters | CommentUpvoterUpdateManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| parentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutCommentInput | No |
| replies | CommentUncheckedUpdateManyWithoutParentInput | No |
| upvoters | CommentUpvoterUncheckedUpdateManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| parentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skill | SkillUpdateOneRequiredWithoutDesiringUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skillId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skillId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| location | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| positionName | String | StringFieldUpdateOperationsInput | No |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| type | ExperienceType | NullableEnumExperienceTypeFieldUpdateOperationsInput | Null | Yes |
| highlights | ExperienceUpdatehighlightsInput | String | No |
| organization | OrganizationUpdateOneRequiredWithoutExperiencesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| location | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| organizationName | String | StringFieldUpdateOperationsInput | No |
| positionName | String | StringFieldUpdateOperationsInput | No |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| type | ExperienceType | NullableEnumExperienceTypeFieldUpdateOperationsInput | Null | Yes |
| highlights | ExperienceUpdatehighlightsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| location | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| organizationName | String | StringFieldUpdateOperationsInput | No |
| positionName | String | StringFieldUpdateOperationsInput | No |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| type | ExperienceType | NullableEnumExperienceTypeFieldUpdateOperationsInput | Null | Yes |
| highlights | ExperienceUpdatehighlightsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| follow | FollowUpdateOneRequiredWithoutFollowingUserInput | No |
| follower | UserUpdateOneRequiredWithoutFollowingUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followId | String | StringFieldUpdateOperationsInput | No |
| followerId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followId | String | StringFieldUpdateOperationsInput | No |
| followerId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| follow | FollowUpdateOneRequiredWithoutFollowingSkillInput | No |
| following | SkillUpdateOneRequiredWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followId | String | StringFieldUpdateOperationsInput | No |
| followingId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followId | String | StringFieldUpdateOperationsInput | No |
| followingId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| follow | FollowUpdateOneRequiredWithoutFollowingUserInput | No |
| following | UserUpdateOneRequiredWithoutFollowedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followId | String | StringFieldUpdateOperationsInput | No |
| followingId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followId | String | StringFieldUpdateOperationsInput | No |
| followingId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| rejected | Boolean | BoolFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutFriendshipInput | No |
| friender | UserUpdateOneRequiredWithoutFriendingInput | No |
| notifications | NotificationUpdateManyWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| frienderId | String | StringFieldUpdateOperationsInput | No |
| rejected | Boolean | BoolFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutFriendshipInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| frienderId | String | StringFieldUpdateOperationsInput | No |
| rejected | Boolean | BoolFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| rejected | Boolean | BoolFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutFriendshipInput | No |
| friending | UserUpdateOneRequiredWithoutFriendedByInput | No |
| notifications | NotificationUpdateManyWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| friendingId | String | StringFieldUpdateOperationsInput | No |
| rejected | Boolean | BoolFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutFriendshipInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutFriendshipInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| opened | Boolean | BoolFieldUpdateOperationsInput | No |
| type | NotificationType | EnumNotificationTypeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| chat | ChatUpdateOneWithoutNotificationsInput | No |
| friendship | FriendshipUpdateOneWithoutNotificationsInput | No |
| post | PostUpdateOneWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| chatId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| friendshipId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| opened | Boolean | BoolFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | NotificationType | EnumNotificationTypeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| chatId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| friendshipId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| opened | Boolean | BoolFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | NotificationType | EnumNotificationTypeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| publishedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| readTime | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| thumbnailUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| urlSlug | String | StringFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutPostInput | No |
| comments | CommentUpdateManyWithoutPostInput | No |
| images | PostImageUpdateManyWithoutPostInput | No |
| notifications | NotificationUpdateManyWithoutPostInput | No |
| skills | SkillsOnPostsUpdateManyWithoutPostInput | No |
| upvoters | PostUpvoterUpdateManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| publishedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| readTime | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| thumbnailUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| urlSlug | String | StringFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutPostInput | No |
| comments | CommentUncheckedUpdateManyWithoutPostInput | No |
| images | PostImageUncheckedUpdateManyWithoutPostInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutPostInput | No |
| skills | SkillsOnPostsUncheckedUpdateManyWithoutPostInput | No |
| upvoters | PostUpvoterUncheckedUpdateManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| publishedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| readTime | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| thumbnailUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| urlSlug | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| skills | SkillsOnRepositoriesUpdateManyWithoutRepositoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| skills | SkillsOnRepositoriesUncheckedUpdateManyWithoutRepositoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skill | SkillUpdateOneRequiredWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skillId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skillId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| comment | CommentUpdateOneRequiredWithoutUpvotersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| commentId | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| commentId | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| post | PostUpdateOneRequiredWithoutUpvotersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| postId | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| postId | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId | String | Null | Yes |
| createdAt | DateTime | No |
| followId | String | Null | Yes |
| postId | String | Null | Yes |
| type | UserActivityType | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | Null | Yes |
| opened | Boolean | No |
| postId | String | Null | Yes |
| type | NotificationType | No |
| updatedAt | DateTime | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| type | UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput | No |
| comment | CommentUpdateOneWithoutActivitiesInput | No |
| follow | FollowUpdateOneWithoutActivitiesInput | No |
| post | PostUpdateOneWithoutActivitiesInput | No |
| user | UserUpdateOneRequiredWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| followId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| opened | Boolean | BoolFieldUpdateOperationsInput | No |
| type | NotificationType | EnumNotificationTypeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| chat | ChatUpdateOneWithoutNotificationsInput | No |
| post | PostUpdateOneWithoutNotificationsInput | No |
| user | UserUpdateOneRequiredWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| chatId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| opened | Boolean | BoolFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | NotificationType | EnumNotificationTypeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId | String | Null | Yes |
| createdAt | DateTime | No |
| friendshipId | String | Null | Yes |
| postId | String | Null | Yes |
| type | UserActivityType | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| type | UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput | No |
| comment | CommentUpdateOneWithoutActivitiesInput | No |
| friendship | FriendshipUpdateOneWithoutActivitiesInput | No |
| post | PostUpdateOneWithoutActivitiesInput | No |
| user | UserUpdateOneRequiredWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| friendshipId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| content | JsonNullValueInput | Json | No |
| senderId | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| friendshipId | String | Null | Yes |
| opened | Boolean | No |
| postId | String | Null | Yes |
| type | NotificationType | No |
| updatedAt | DateTime | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| content | JsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| sender | UserUpdateOneRequiredWithoutChatMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| content | JsonNullValueInput | Json | No |
| senderId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| content | JsonNullValueInput | Json | No |
| senderId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| opened | Boolean | BoolFieldUpdateOperationsInput | No |
| type | NotificationType | EnumNotificationTypeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| friendship | FriendshipUpdateOneWithoutNotificationsInput | No |
| post | PostUpdateOneWithoutNotificationsInput | No |
| user | UserUpdateOneRequiredWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| friendshipId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| opened | Boolean | BoolFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | NotificationType | EnumNotificationTypeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId | String | Null | Yes |
| createdAt | DateTime | No |
| followId | String | Null | Yes |
| friendshipId | String | Null | Yes |
| type | UserActivityType | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| parentId | String | Null | Yes |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| url | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | Null | Yes |
| friendshipId | String | Null | Yes |
| opened | Boolean | No |
| type | NotificationType | No |
| updatedAt | DateTime | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| upvote | Boolean | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| type | UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput | No |
| comment | CommentUpdateOneWithoutActivitiesInput | No |
| follow | FollowUpdateOneWithoutActivitiesInput | No |
| friendship | FriendshipUpdateOneWithoutActivitiesInput | No |
| user | UserUpdateOneRequiredWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| followId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| friendshipId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutCommentInput | No |
| author | UserUpdateOneRequiredWithoutCommentsInput | No |
| parent | CommentUpdateOneWithoutRepliesInput | No |
| replies | CommentUpdateManyWithoutParentInput | No |
| upvoters | CommentUpvoterUpdateManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| parentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutCommentInput | No |
| replies | CommentUncheckedUpdateManyWithoutParentInput | No |
| upvoters | CommentUpvoterUncheckedUpdateManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| opened | Boolean | BoolFieldUpdateOperationsInput | No |
| type | NotificationType | EnumNotificationTypeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| chat | ChatUpdateOneWithoutNotificationsInput | No |
| friendship | FriendshipUpdateOneWithoutNotificationsInput | No |
| user | UserUpdateOneRequiredWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| chatId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| friendshipId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| opened | Boolean | BoolFieldUpdateOperationsInput | No |
| type | NotificationType | EnumNotificationTypeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skill | SkillUpdateOneRequiredWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skillId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skillId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutUpvotedPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| followId | String | Null | Yes |
| friendshipId | String | Null | Yes |
| postId | String | Null | Yes |
| type | UserActivityType | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | No |
| postId | String | Null | Yes |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| upvote | Boolean | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| type | UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput | No |
| follow | FollowUpdateOneWithoutActivitiesInput | No |
| friendship | FriendshipUpdateOneWithoutActivitiesInput | No |
| post | PostUpdateOneWithoutActivitiesInput | No |
| user | UserUpdateOneRequiredWithoutActivitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| followId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| friendshipId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | UserActivityType | EnumUserActivityTypeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUpdateManyWithoutCommentInput | No |
| author | UserUpdateOneRequiredWithoutCommentsInput | No |
| post | PostUpdateOneWithoutCommentsInput | No |
| replies | CommentUpdateManyWithoutParentInput | No |
| upvoters | CommentUpvoterUpdateManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| activities | UserActivityUncheckedUpdateManyWithoutCommentInput | No |
| replies | CommentUncheckedUpdateManyWithoutParentInput | No |
| upvoters | CommentUpvoterUncheckedUpdateManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| content | NullableJsonNullValueInput | Json | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutUpvotedCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| upvote | Boolean | BoolFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| repositoryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followId | String | No |
| followerId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutDesiredSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| post | PostUpdateOneRequiredWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| postId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| postId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| repository | RepositoryUpdateOneRequiredWithoutSkillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| repositoryId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| repositoryId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| follow | FollowUpdateOneRequiredWithoutFollowingSkillInput | No |
| follower | UserUpdateOneRequiredWithoutFollowingSkillInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followId | String | StringFieldUpdateOperationsInput | No |
| followerId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followId | String | StringFieldUpdateOperationsInput | No |
| followerId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skill | SkillUpdateOneRequiredWithoutRepositoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skillId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| skillId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| endDate | DateTime | Null | Yes |
| location | String | Null | Yes |
| positionName | String | No |
| startDate | DateTime | No |
| type | ExperienceType | Null | Yes |
| userId | String | No |
| highlights | ExperienceCreateManyhighlightsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| location | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| positionName | String | StringFieldUpdateOperationsInput | No |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| type | ExperienceType | NullableEnumExperienceTypeFieldUpdateOperationsInput | Null | Yes |
| highlights | ExperienceUpdatehighlightsInput | String | No |
| user | UserUpdateOneRequiredWithoutExperiencesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| location | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| positionName | String | StringFieldUpdateOperationsInput | No |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| type | ExperienceType | NullableEnumExperienceTypeFieldUpdateOperationsInput | Null | Yes |
| userId | String | StringFieldUpdateOperationsInput | No |
| highlights | ExperienceUpdatehighlightsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | String | No |
| expires_at | Int | No |
| id | String | Yes |
| id_token | String | No |
| provider | String | Yes |
| providerAccountId | String | Yes |
| oauth_token | String | No |
| oauth_token_secret | String | No |
| refresh_token | String | No |
| scope | String | No |
| session_state | String | No |
| token_type | String | No |
| type | String | Yes |
| user | User | Yes |
| userId | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | Yes |
| id | String | Yes |
| sessionToken | String | Yes |
| user | User | Yes |
| userId | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | Yes |
| identifier | String | Yes |
| token | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| accounts | Account[] | No |
| activities | UserActivity[] | No |
| chats | ChatsOnUsers[] | No |
| chatMessages | ChatMessage[] | No |
| comments | Comment[] | No |
| createdAt | DateTime | Yes |
| description | String | No |
| desiredSkills | DesiredSkillsOnUsers[] | No |
| String | Yes | |
| emailVerified | DateTime | No |
| experiences | Experience[] | No |
| followedBy | FollowUser[] | No |
| followingSkill | FollowSkill[] | No |
| followingUser | FollowUser[] | No |
| friendedBy | Friendship[] | No |
| friending | Friendship[] | No |
| id | String | Yes |
| image | String | No |
| name | String | Yes |
| notifications | Notification[] | No |
| notificationsLastOpenedAt | DateTime | Yes |
| posts | Post[] | No |
| repositories | Repository[] | No |
| sessions | Session[] | No |
| skills | SkillsOnUsers[] | No |
| updatedAt | DateTime | Yes |
| upvotedComments | CommentUpvoter[] | No |
| upvotedPosts | PostUpvoter[] | No |
| _count | UserCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| comment | Comment | No |
| commentId | String | No |
| createdAt | DateTime | Yes |
| follow | Follow | No |
| followId | String | No |
| friendship | Friendship | No |
| friendshipId | String | No |
| post | Post | No |
| postId | String | No |
| type | UserActivityType | Yes |
| user | User | Yes |
| userId | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| chat | Chat | No |
| chatId | String | No |
| friendship | Friendship | No |
| friendshipId | String | No |
| opened | Boolean | Yes |
| post | Post | No |
| postId | String | No |
| type | NotificationType | Yes |
| updatedAt | DateTime | Yes |
| user | User | Yes |
| userId | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| activities | UserActivity[] | No |
| friender | User | Yes |
| frienderId | String | Yes |
| friending | User | Yes |
| friendingId | String | Yes |
| notifications | Notification[] | No |
| rejected | Boolean | Yes |
| updatedAt | DateTime | Yes |
| _count | FriendshipCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| activities | UserActivity[] | No |
| createdAt | DateTime | Yes |
| followingSkill | FollowSkill | No |
| followingUser | FollowUser | No |
| _count | FollowCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| follow | Follow | Yes |
| followId | String | Yes |
| follower | User | Yes |
| followerId | String | Yes |
| following | User | Yes |
| followingId | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| follow | Follow | Yes |
| followId | String | Yes |
| follower | User | Yes |
| followerId | String | Yes |
| following | Skill | Yes |
| followingId | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| messages | ChatMessage[] | No |
| notifications | Notification[] | No |
| users | ChatsOnUsers[] | No |
| updatedAt | DateTime | Yes |
| _count | ChatCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| chat | Chat | Yes |
| chatId | String | Yes |
| content | Json | Yes |
| sender | User | Yes |
| senderId | String | Yes |
| createdAt | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| chat | Chat | Yes |
| chatId | String | Yes |
| user | User | Yes |
| userId | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| activities | UserActivity[] | No |
| author | User | Yes |
| authorName | String | Yes |
| comments | Comment[] | No |
| content | Json | No |
| createdAt | DateTime | Yes |
| description | String | No |
| id | String | Yes |
| images | PostImage[] | No |
| notifications | Notification[] | No |
| publishedAt | DateTime | No |
| readTime | Int | No |
| skills | SkillsOnPosts[] | No |
| title | String | No |
| thumbnailUrl | String | No |
| updatedAt | DateTime | Yes |
| upvoters | PostUpvoter[] | No |
| urlSlug | String | Yes |
| _count | PostCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| post | Post | Yes |
| postId | String | Yes |
| upvote | Boolean | Yes |
| user | User | Yes |
| userId | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| post | Post | Yes |
| postId | String | Yes |
| url | String | Yes |
| createdAt | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| activities | UserActivity[] | No |
| author | User | Yes |
| authorId | String | Yes |
| content | Json | No |
| createdAt | DateTime | Yes |
| parent | Comment | No |
| parentId | String | No |
| post | Post | No |
| postId | String | No |
| replies | Comment[] | No |
| updatedAt | DateTime | Yes |
| upvoters | CommentUpvoter[] | No |
| _count | CommentCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| comment | Comment | Yes |
| commentId | String | Yes |
| upvote | Boolean | Yes |
| user | User | Yes |
| userId | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| owner | String | Yes |
| users | SkillsOnUsers[] | No |
| desiringUsers | DesiredSkillsOnUsers[] | No |
| posts | SkillsOnPosts[] | No |
| repositories | SkillsOnRepositories[] | No |
| followedBy | FollowSkill[] | No |
| _count | SkillCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| post | Post | Yes |
| postId | String | Yes |
| skill | Skill | Yes |
| skillId | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| skill | Skill | Yes |
| skillId | String | Yes |
| user | User | Yes |
| userId | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| skill | Skill | Yes |
| skillId | String | Yes |
| user | User | Yes |
| userId | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| skills | SkillsOnRepositories[] | No |
| user | User | Yes |
| owner | String | Yes |
| _count | RepositoryCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| skill | Skill | Yes |
| skillId | String | Yes |
| repository | Repository | Yes |
| repositoryId | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| experiences | Experience[] | No |
| _count | OrganizationCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| endDate | DateTime | No |
| highlights | String | No |
| location | String | No |
| organization | Organization | Yes |
| organizationName | String | Yes |
| positionName | String | Yes |
| startDate | DateTime | Yes |
| type | ExperienceType | No |
| user | User | Yes |
| userId | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| _count | AccountCountAggregateOutputType | No |
| _avg | AccountAvgAggregateOutputType | No |
| _sum | AccountSumAggregateOutputType | No |
| _min | AccountMinAggregateOutputType | No |
| _max | AccountMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | String | No |
| expires_at | Int | No |
| id | String | Yes |
| id_token | String | No |
| provider | String | Yes |
| providerAccountId | String | Yes |
| oauth_token | String | No |
| oauth_token_secret | String | No |
| refresh_token | String | No |
| scope | String | No |
| session_state | String | No |
| token_type | String | No |
| type | String | Yes |
| userId | String | Yes |
| _count | AccountCountAggregateOutputType | No |
| _avg | AccountAvgAggregateOutputType | No |
| _sum | AccountSumAggregateOutputType | No |
| _min | AccountMinAggregateOutputType | No |
| _max | AccountMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SessionCountAggregateOutputType | No |
| _min | SessionMinAggregateOutputType | No |
| _max | SessionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | Yes |
| id | String | Yes |
| sessionToken | String | Yes |
| userId | String | Yes |
| _count | SessionCountAggregateOutputType | No |
| _min | SessionMinAggregateOutputType | No |
| _max | SessionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | VerificationTokenCountAggregateOutputType | No |
| _min | VerificationTokenMinAggregateOutputType | No |
| _max | VerificationTokenMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | Yes |
| identifier | String | Yes |
| token | String | Yes |
| _count | VerificationTokenCountAggregateOutputType | No |
| _min | VerificationTokenMinAggregateOutputType | No |
| _max | VerificationTokenMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserCountAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | Yes |
| description | String | No |
| String | Yes | |
| emailVerified | DateTime | No |
| id | String | Yes |
| image | String | No |
| name | String | Yes |
| notificationsLastOpenedAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | UserCountAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserActivityCountAggregateOutputType | No |
| _min | UserActivityMinAggregateOutputType | No |
| _max | UserActivityMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| commentId | String | No |
| createdAt | DateTime | Yes |
| followId | String | No |
| friendshipId | String | No |
| postId | String | No |
| type | UserActivityType | Yes |
| userId | String | Yes |
| _count | UserActivityCountAggregateOutputType | No |
| _min | UserActivityMinAggregateOutputType | No |
| _max | UserActivityMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | NotificationCountAggregateOutputType | No |
| _min | NotificationMinAggregateOutputType | No |
| _max | NotificationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| chatId | String | No |
| friendshipId | String | No |
| opened | Boolean | Yes |
| postId | String | No |
| type | NotificationType | Yes |
| updatedAt | DateTime | Yes |
| userId | String | Yes |
| _count | NotificationCountAggregateOutputType | No |
| _min | NotificationMinAggregateOutputType | No |
| _max | NotificationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FriendshipCountAggregateOutputType | No |
| _min | FriendshipMinAggregateOutputType | No |
| _max | FriendshipMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| frienderId | String | Yes |
| friendingId | String | Yes |
| rejected | Boolean | Yes |
| updatedAt | DateTime | Yes |
| _count | FriendshipCountAggregateOutputType | No |
| _min | FriendshipMinAggregateOutputType | No |
| _max | FriendshipMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FollowCountAggregateOutputType | No |
| _min | FollowMinAggregateOutputType | No |
| _max | FollowMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| _count | FollowCountAggregateOutputType | No |
| _min | FollowMinAggregateOutputType | No |
| _max | FollowMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FollowUserCountAggregateOutputType | No |
| _min | FollowUserMinAggregateOutputType | No |
| _max | FollowUserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| followId | String | Yes |
| followerId | String | Yes |
| followingId | String | Yes |
| _count | FollowUserCountAggregateOutputType | No |
| _min | FollowUserMinAggregateOutputType | No |
| _max | FollowUserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FollowSkillCountAggregateOutputType | No |
| _min | FollowSkillMinAggregateOutputType | No |
| _max | FollowSkillMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| followId | String | Yes |
| followerId | String | Yes |
| followingId | String | Yes |
| _count | FollowSkillCountAggregateOutputType | No |
| _min | FollowSkillMinAggregateOutputType | No |
| _max | FollowSkillMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ChatCountAggregateOutputType | No |
| _min | ChatMinAggregateOutputType | No |
| _max | ChatMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| updatedAt | DateTime | Yes |
| _count | ChatCountAggregateOutputType | No |
| _min | ChatMinAggregateOutputType | No |
| _max | ChatMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ChatMessageCountAggregateOutputType | No |
| _min | ChatMessageMinAggregateOutputType | No |
| _max | ChatMessageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| chatId | String | Yes |
| content | Json | Yes |
| senderId | String | Yes |
| createdAt | DateTime | Yes |
| _count | ChatMessageCountAggregateOutputType | No |
| _min | ChatMessageMinAggregateOutputType | No |
| _max | ChatMessageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ChatsOnUsersCountAggregateOutputType | No |
| _min | ChatsOnUsersMinAggregateOutputType | No |
| _max | ChatsOnUsersMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| chatId | String | Yes |
| userId | String | Yes |
| _count | ChatsOnUsersCountAggregateOutputType | No |
| _min | ChatsOnUsersMinAggregateOutputType | No |
| _max | ChatsOnUsersMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PostCountAggregateOutputType | No |
| _avg | PostAvgAggregateOutputType | No |
| _sum | PostSumAggregateOutputType | No |
| _min | PostMinAggregateOutputType | No |
| _max | PostMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | Yes |
| content | Json | No |
| createdAt | DateTime | Yes |
| description | String | No |
| id | String | Yes |
| publishedAt | DateTime | No |
| readTime | Int | No |
| title | String | No |
| thumbnailUrl | String | No |
| updatedAt | DateTime | Yes |
| urlSlug | String | Yes |
| _count | PostCountAggregateOutputType | No |
| _avg | PostAvgAggregateOutputType | No |
| _sum | PostSumAggregateOutputType | No |
| _min | PostMinAggregateOutputType | No |
| _max | PostMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PostUpvoterCountAggregateOutputType | No |
| _min | PostUpvoterMinAggregateOutputType | No |
| _max | PostUpvoterMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| postId | String | Yes |
| upvote | Boolean | Yes |
| userId | String | Yes |
| _count | PostUpvoterCountAggregateOutputType | No |
| _min | PostUpvoterMinAggregateOutputType | No |
| _max | PostUpvoterMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PostImageCountAggregateOutputType | No |
| _min | PostImageMinAggregateOutputType | No |
| _max | PostImageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| postId | String | Yes |
| url | String | Yes |
| createdAt | DateTime | Yes |
| _count | PostImageCountAggregateOutputType | No |
| _min | PostImageMinAggregateOutputType | No |
| _max | PostImageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CommentCountAggregateOutputType | No |
| _min | CommentMinAggregateOutputType | No |
| _max | CommentMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| authorId | String | Yes |
| content | Json | No |
| createdAt | DateTime | Yes |
| parentId | String | No |
| postId | String | No |
| updatedAt | DateTime | Yes |
| _count | CommentCountAggregateOutputType | No |
| _min | CommentMinAggregateOutputType | No |
| _max | CommentMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CommentUpvoterCountAggregateOutputType | No |
| _min | CommentUpvoterMinAggregateOutputType | No |
| _max | CommentUpvoterMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| commentId | String | Yes |
| upvote | Boolean | Yes |
| userId | String | Yes |
| _count | CommentUpvoterCountAggregateOutputType | No |
| _min | CommentUpvoterMinAggregateOutputType | No |
| _max | CommentUpvoterMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SkillCountAggregateOutputType | No |
| _min | SkillMinAggregateOutputType | No |
| _max | SkillMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| owner | String | Yes |
| _count | SkillCountAggregateOutputType | No |
| _min | SkillMinAggregateOutputType | No |
| _max | SkillMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SkillsOnPostsCountAggregateOutputType | No |
| _min | SkillsOnPostsMinAggregateOutputType | No |
| _max | SkillsOnPostsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| postId | String | Yes |
| skillId | String | Yes |
| _count | SkillsOnPostsCountAggregateOutputType | No |
| _min | SkillsOnPostsMinAggregateOutputType | No |
| _max | SkillsOnPostsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SkillsOnUsersCountAggregateOutputType | No |
| _min | SkillsOnUsersMinAggregateOutputType | No |
| _max | SkillsOnUsersMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| skillId | String | Yes |
| userId | String | Yes |
| _count | SkillsOnUsersCountAggregateOutputType | No |
| _min | SkillsOnUsersMinAggregateOutputType | No |
| _max | SkillsOnUsersMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | DesiredSkillsOnUsersCountAggregateOutputType | No |
| _min | DesiredSkillsOnUsersMinAggregateOutputType | No |
| _max | DesiredSkillsOnUsersMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| skillId | String | Yes |
| userId | String | Yes |
| _count | DesiredSkillsOnUsersCountAggregateOutputType | No |
| _min | DesiredSkillsOnUsersMinAggregateOutputType | No |
| _max | DesiredSkillsOnUsersMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RepositoryCountAggregateOutputType | No |
| _min | RepositoryMinAggregateOutputType | No |
| _max | RepositoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| owner | String | Yes |
| _count | RepositoryCountAggregateOutputType | No |
| _min | RepositoryMinAggregateOutputType | No |
| _max | RepositoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SkillsOnRepositoriesCountAggregateOutputType | No |
| _min | SkillsOnRepositoriesMinAggregateOutputType | No |
| _max | SkillsOnRepositoriesMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| skillId | String | Yes |
| repositoryId | String | Yes |
| _count | SkillsOnRepositoriesCountAggregateOutputType | No |
| _min | SkillsOnRepositoriesMinAggregateOutputType | No |
| _max | SkillsOnRepositoriesMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | OrganizationCountAggregateOutputType | No |
| _min | OrganizationMinAggregateOutputType | No |
| _max | OrganizationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| _count | OrganizationCountAggregateOutputType | No |
| _min | OrganizationMinAggregateOutputType | No |
| _max | OrganizationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ExperienceCountAggregateOutputType | No |
| _min | ExperienceMinAggregateOutputType | No |
| _max | ExperienceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| endDate | DateTime | No |
| highlights | String | No |
| location | String | No |
| organizationName | String | Yes |
| positionName | String | Yes |
| startDate | DateTime | Yes |
| type | ExperienceType | No |
| userId | String | Yes |
| _count | ExperienceCountAggregateOutputType | No |
| _min | ExperienceMinAggregateOutputType | No |
| _max | ExperienceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| count | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| access_token | Int | Yes |
| expires_at | Int | Yes |
| id | Int | Yes |
| id_token | Int | Yes |
| provider | Int | Yes |
| providerAccountId | Int | Yes |
| oauth_token | Int | Yes |
| oauth_token_secret | Int | Yes |
| refresh_token | Int | Yes |
| scope | Int | Yes |
| session_state | Int | Yes |
| token_type | Int | Yes |
| type | Int | Yes |
| userId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| expires_at | Float | No |
| Name | Type | Nullable |
|---|---|---|
| expires_at | Int | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | String | No |
| expires_at | Int | No |
| id | String | No |
| id_token | String | No |
| provider | String | No |
| providerAccountId | String | No |
| oauth_token | String | No |
| oauth_token_secret | String | No |
| refresh_token | String | No |
| scope | String | No |
| session_state | String | No |
| token_type | String | No |
| type | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| access_token | String | No |
| expires_at | Int | No |
| id | String | No |
| id_token | String | No |
| provider | String | No |
| providerAccountId | String | No |
| oauth_token | String | No |
| oauth_token_secret | String | No |
| refresh_token | String | No |
| scope | String | No |
| session_state | String | No |
| token_type | String | No |
| type | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| expires | Int | Yes |
| id | Int | Yes |
| sessionToken | Int | Yes |
| userId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | No |
| id | String | No |
| sessionToken | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | No |
| id | String | No |
| sessionToken | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| expires | Int | Yes |
| identifier | Int | Yes |
| token | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | No |
| identifier | String | No |
| token | String | No |
| Name | Type | Nullable |
|---|---|---|
| expires | DateTime | No |
| identifier | String | No |
| token | String | No |
| Name | Type | Nullable |
|---|---|---|
| accounts | Int | Yes |
| activities | Int | Yes |
| chats | Int | Yes |
| chatMessages | Int | Yes |
| comments | Int | Yes |
| desiredSkills | Int | Yes |
| experiences | Int | Yes |
| followedBy | Int | Yes |
| followingSkill | Int | Yes |
| followingUser | Int | Yes |
| friendedBy | Int | Yes |
| friending | Int | Yes |
| notifications | Int | Yes |
| posts | Int | Yes |
| repositories | Int | Yes |
| sessions | Int | Yes |
| skills | Int | Yes |
| upvotedComments | Int | Yes |
| upvotedPosts | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| createdAt | Int | Yes |
| description | Int | Yes |
| Int | Yes | |
| emailVerified | Int | Yes |
| id | Int | Yes |
| image | Int | Yes |
| name | Int | Yes |
| notificationsLastOpenedAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| description | String | No |
| String | No | |
| emailVerified | DateTime | No |
| id | String | No |
| image | String | No |
| name | String | No |
| notificationsLastOpenedAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| createdAt | DateTime | No |
| description | String | No |
| String | No | |
| emailVerified | DateTime | No |
| id | String | No |
| image | String | No |
| name | String | No |
| notificationsLastOpenedAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| commentId | Int | Yes |
| createdAt | Int | Yes |
| followId | Int | Yes |
| friendshipId | Int | Yes |
| postId | Int | Yes |
| type | Int | Yes |
| userId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId | String | No |
| createdAt | DateTime | No |
| followId | String | No |
| friendshipId | String | No |
| postId | String | No |
| type | UserActivityType | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId | String | No |
| createdAt | DateTime | No |
| followId | String | No |
| friendshipId | String | No |
| postId | String | No |
| type | UserActivityType | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| chatId | Int | Yes |
| friendshipId | Int | Yes |
| opened | Int | Yes |
| postId | Int | Yes |
| type | Int | Yes |
| updatedAt | Int | Yes |
| userId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | No |
| friendshipId | String | No |
| opened | Boolean | No |
| postId | String | No |
| type | NotificationType | No |
| updatedAt | DateTime | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | No |
| friendshipId | String | No |
| opened | Boolean | No |
| postId | String | No |
| type | NotificationType | No |
| updatedAt | DateTime | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| activities | Int | Yes |
| notifications | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| frienderId | Int | Yes |
| friendingId | Int | Yes |
| rejected | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| frienderId | String | No |
| friendingId | String | No |
| rejected | Boolean | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| frienderId | String | No |
| friendingId | String | No |
| rejected | Boolean | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| activities | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| followId | Int | Yes |
| followerId | Int | Yes |
| followingId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followId | String | No |
| followerId | String | No |
| followingId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followId | String | No |
| followerId | String | No |
| followingId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| followId | Int | Yes |
| followerId | Int | Yes |
| followingId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followId | String | No |
| followerId | String | No |
| followingId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followId | String | No |
| followerId | String | No |
| followingId | String | No |
| Name | Type | Nullable |
|---|---|---|
| messages | Int | Yes |
| notifications | Int | Yes |
| users | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| chatId | Int | Yes |
| content | Int | Yes |
| senderId | Int | Yes |
| createdAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | No |
| senderId | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | No |
| senderId | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| chatId | Int | Yes |
| userId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| chatId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| activities | Int | Yes |
| comments | Int | Yes |
| images | Int | Yes |
| notifications | Int | Yes |
| skills | Int | Yes |
| upvoters | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| authorName | Int | Yes |
| content | Int | Yes |
| createdAt | Int | Yes |
| description | Int | Yes |
| id | Int | Yes |
| publishedAt | Int | Yes |
| readTime | Int | Yes |
| title | Int | Yes |
| thumbnailUrl | Int | Yes |
| updatedAt | Int | Yes |
| urlSlug | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| readTime | Float | No |
| Name | Type | Nullable |
|---|---|---|
| readTime | Int | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | No |
| createdAt | DateTime | No |
| description | String | No |
| id | String | No |
| publishedAt | DateTime | No |
| readTime | Int | No |
| title | String | No |
| thumbnailUrl | String | No |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| Name | Type | Nullable |
|---|---|---|
| authorName | String | No |
| createdAt | DateTime | No |
| description | String | No |
| id | String | No |
| publishedAt | DateTime | No |
| readTime | Int | No |
| title | String | No |
| thumbnailUrl | String | No |
| updatedAt | DateTime | No |
| urlSlug | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| postId | Int | Yes |
| upvote | Int | Yes |
| userId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| upvote | Boolean | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| upvote | Boolean | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| postId | Int | Yes |
| url | Int | Yes |
| createdAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| url | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| url | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| activities | Int | Yes |
| replies | Int | Yes |
| upvoters | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| authorId | Int | Yes |
| content | Int | Yes |
| createdAt | Int | Yes |
| parentId | Int | Yes |
| postId | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| createdAt | DateTime | No |
| parentId | String | No |
| postId | String | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| createdAt | DateTime | No |
| parentId | String | No |
| postId | String | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| commentId | Int | Yes |
| upvote | Int | Yes |
| userId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId | String | No |
| upvote | Boolean | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| commentId | String | No |
| upvote | Boolean | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| users | Int | Yes |
| desiringUsers | Int | Yes |
| posts | Int | Yes |
| repositories | Int | Yes |
| followedBy | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| owner | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| postId | Int | Yes |
| skillId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| skillId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| skillId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| skillId | Int | Yes |
| userId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| skillId | Int | Yes |
| userId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| skills | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| owner | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| owner | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| skillId | Int | Yes |
| repositoryId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| repositoryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| skillId | String | No |
| repositoryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| experiences | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| endDate | Int | Yes |
| highlights | Int | Yes |
| location | Int | Yes |
| organizationName | Int | Yes |
| positionName | Int | Yes |
| startDate | Int | Yes |
| type | Int | Yes |
| userId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| endDate | DateTime | No |
| location | String | No |
| organizationName | String | No |
| positionName | String | No |
| startDate | DateTime | No |
| type | ExperienceType | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| endDate | DateTime | No |
| location | String | No |
| organizationName | String | No |
| positionName | String | No |
| startDate | DateTime | No |
| type | ExperienceType | No |
| userId | String | No |